├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin └── run-tests.sh ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── Builder.php ├── Collection.php ├── Exception.php ├── Exception │ ├── DeleteRestrictedException.php │ ├── InvalidColumnException.php │ ├── InvalidDataForColumnException.php │ └── ModelNotFoundException.php ├── Extensions │ ├── Meta │ │ ├── BaseMetaTable.php │ │ ├── MetaSupport.php │ │ ├── MetaTable.php │ │ ├── ModelWithMeta.php │ │ └── WithMeta.php │ └── Trash │ │ ├── TrashSupport.php │ │ ├── TrashTable.php │ │ └── Trashable.php ├── Manager.php ├── Model.php ├── Query │ ├── Builder.php │ ├── Complex_Query.php │ ├── FluentQuery.php │ ├── Scope.php │ ├── Simple_Query.php │ └── Tag │ │ ├── From.php │ │ ├── Generic.php │ │ ├── Group.php │ │ ├── Having.php │ │ ├── Join.php │ │ ├── Limit.php │ │ ├── Order.php │ │ ├── Select.php │ │ ├── Where.php │ │ ├── Where_Date.php │ │ └── Where_Raw.php ├── Relations │ ├── HasChildren.php │ ├── HasForeign.php │ ├── HasForeignComment.php │ ├── HasForeignPost.php │ ├── HasForeignTerm.php │ ├── HasForeignUser.php │ ├── HasMany.php │ ├── HasOne.php │ ├── HasOneOrMany.php │ ├── HasParent.php │ ├── ManyToMany.php │ ├── ManyToManyComments.php │ ├── ManyToManyPosts.php │ ├── ManyToManyTerms.php │ ├── ManyToManyUsers.php │ └── Relation.php ├── Saver │ ├── CommentSaver.php │ ├── ModelSaver.php │ ├── PostSaver.php │ ├── Saver.php │ ├── TermSaver.php │ └── UserSaver.php ├── Table │ ├── Association │ │ ├── AssociationTable.php │ │ ├── BaseAssociationTable.php │ │ ├── CommentAssociationTable.php │ │ ├── ModelAssociationTable.php │ │ ├── PostAssociationTable.php │ │ ├── TermAssociationTable.php │ │ └── UserAssociationTable.php │ ├── BaseTable.php │ ├── Column │ │ ├── BaseColumn.php │ │ ├── Boolean.php │ │ ├── Column.php │ │ ├── Date.php │ │ ├── DateTime.php │ │ ├── DecimalBased.php │ │ ├── Enum.php │ │ ├── Foreign.php │ │ ├── ForeignComment.php │ │ ├── ForeignModel.php │ │ ├── ForeignPost.php │ │ ├── ForeignTerm.php │ │ ├── ForeignUser.php │ │ ├── IntegerBased.php │ │ ├── SimpleForeign.php │ │ ├── StringBased.php │ │ └── Time.php │ ├── ForeignKey │ │ ├── DeleteConstrainable.php │ │ └── DeleteConstrained.php │ ├── InMemoryTable.php │ ├── Plugins │ │ ├── DeleteConstrainer.php │ │ └── Plugin.php │ ├── Table.php │ ├── TimestampedMemoryTable.php │ └── TimestampedTable.php ├── WP │ ├── Comments.php │ ├── PostMeta.php │ ├── Posts.php │ ├── TermTaxonomy.php │ ├── Terms.php │ └── Users.php ├── functions.php └── load.php └── tests ├── Stub ├── Models │ ├── Actor.php │ ├── Author.php │ ├── AuthorSession.php │ ├── Book.php │ ├── Gallery.php │ ├── Library.php │ ├── ModelWithAllForeign.php │ ├── ModelWithForeignPost.php │ ├── ModelWithMutators.php │ ├── Movie.php │ ├── PHP54.php │ ├── Review.php │ └── Uncached.php ├── PublishedScope.php ├── Tables │ ├── Actors.php │ ├── AuthorSessions.php │ ├── Authors.php │ ├── Books.php │ ├── Galleries.php │ ├── Libraries.php │ ├── Movies.php │ ├── PHP54s.php │ ├── Reviews.php │ ├── TableWithAllForeign.php │ ├── TableWithForeignPost.php │ └── Uncached.php ├── builder.php ├── model.php └── table.php ├── TestCase.php ├── bootstrap.php ├── integration ├── foreign-key │ └── test-delete-constraints.php ├── meta │ ├── test-meta.php │ └── test-trait.php ├── relations │ ├── test-belongs-to-many.php │ ├── test-has-foreign.php │ ├── test-has-many.php │ ├── test-has-one.php │ ├── test-many-to-many.php │ └── test-nested.php ├── test-crud.php ├── test-events.php ├── test-fluent-query.php ├── test-helper.php ├── test-mutators.php ├── test-scopes.php ├── test-trash.php └── test-uncached.php └── unit ├── Columns ├── test-base-column.php ├── test-boolean.php ├── test-date.php ├── test-datetime.php ├── test-decimal-based.php ├── test-foreign-comment.php ├── test-foreign-post.php ├── test-foreign-term.php ├── test-foreign-user.php ├── test-integer-based.php ├── test-simple-foreign.php ├── test-string-based.php └── test-time.php ├── Saver ├── test-comment.php ├── test-post.php ├── test-term.php └── test-user.php ├── columns └── test-enum.php ├── query ├── tag │ ├── test-from.php │ ├── test-generic.php │ ├── test-group.php │ ├── test-having.php │ ├── test-join.php │ ├── test-limit.php │ ├── test-order.php │ ├── test-select.php │ ├── test-where-date.php │ └── test-where.php ├── test-builder.php ├── test-complex-query.php ├── test-fluent-query.php └── test-simple-query.php ├── test-collection.php ├── test-manager.php └── test-model-php7.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/README.md -------------------------------------------------------------------------------- /bin/run-tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | export WP_DEVELOP_DIR="$1" 4 | 5 | shift 6 | 7 | phpunit "$@" -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Builder.php -------------------------------------------------------------------------------- /src/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Collection.php -------------------------------------------------------------------------------- /src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Exception.php -------------------------------------------------------------------------------- /src/Exception/DeleteRestrictedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Exception/DeleteRestrictedException.php -------------------------------------------------------------------------------- /src/Exception/InvalidColumnException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Exception/InvalidColumnException.php -------------------------------------------------------------------------------- /src/Exception/InvalidDataForColumnException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Exception/InvalidDataForColumnException.php -------------------------------------------------------------------------------- /src/Exception/ModelNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Exception/ModelNotFoundException.php -------------------------------------------------------------------------------- /src/Extensions/Meta/BaseMetaTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Extensions/Meta/BaseMetaTable.php -------------------------------------------------------------------------------- /src/Extensions/Meta/MetaSupport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Extensions/Meta/MetaSupport.php -------------------------------------------------------------------------------- /src/Extensions/Meta/MetaTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Extensions/Meta/MetaTable.php -------------------------------------------------------------------------------- /src/Extensions/Meta/ModelWithMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Extensions/Meta/ModelWithMeta.php -------------------------------------------------------------------------------- /src/Extensions/Meta/WithMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Extensions/Meta/WithMeta.php -------------------------------------------------------------------------------- /src/Extensions/Trash/TrashSupport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Extensions/Trash/TrashSupport.php -------------------------------------------------------------------------------- /src/Extensions/Trash/TrashTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Extensions/Trash/TrashTable.php -------------------------------------------------------------------------------- /src/Extensions/Trash/Trashable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Extensions/Trash/Trashable.php -------------------------------------------------------------------------------- /src/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Manager.php -------------------------------------------------------------------------------- /src/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Model.php -------------------------------------------------------------------------------- /src/Query/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Query/Builder.php -------------------------------------------------------------------------------- /src/Query/Complex_Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Query/Complex_Query.php -------------------------------------------------------------------------------- /src/Query/FluentQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Query/FluentQuery.php -------------------------------------------------------------------------------- /src/Query/Scope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Query/Scope.php -------------------------------------------------------------------------------- /src/Query/Simple_Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Query/Simple_Query.php -------------------------------------------------------------------------------- /src/Query/Tag/From.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Query/Tag/From.php -------------------------------------------------------------------------------- /src/Query/Tag/Generic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Query/Tag/Generic.php -------------------------------------------------------------------------------- /src/Query/Tag/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Query/Tag/Group.php -------------------------------------------------------------------------------- /src/Query/Tag/Having.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Query/Tag/Having.php -------------------------------------------------------------------------------- /src/Query/Tag/Join.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Query/Tag/Join.php -------------------------------------------------------------------------------- /src/Query/Tag/Limit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Query/Tag/Limit.php -------------------------------------------------------------------------------- /src/Query/Tag/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Query/Tag/Order.php -------------------------------------------------------------------------------- /src/Query/Tag/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Query/Tag/Select.php -------------------------------------------------------------------------------- /src/Query/Tag/Where.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Query/Tag/Where.php -------------------------------------------------------------------------------- /src/Query/Tag/Where_Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Query/Tag/Where_Date.php -------------------------------------------------------------------------------- /src/Query/Tag/Where_Raw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Query/Tag/Where_Raw.php -------------------------------------------------------------------------------- /src/Relations/HasChildren.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Relations/HasChildren.php -------------------------------------------------------------------------------- /src/Relations/HasForeign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Relations/HasForeign.php -------------------------------------------------------------------------------- /src/Relations/HasForeignComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Relations/HasForeignComment.php -------------------------------------------------------------------------------- /src/Relations/HasForeignPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Relations/HasForeignPost.php -------------------------------------------------------------------------------- /src/Relations/HasForeignTerm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Relations/HasForeignTerm.php -------------------------------------------------------------------------------- /src/Relations/HasForeignUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Relations/HasForeignUser.php -------------------------------------------------------------------------------- /src/Relations/HasMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Relations/HasMany.php -------------------------------------------------------------------------------- /src/Relations/HasOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Relations/HasOne.php -------------------------------------------------------------------------------- /src/Relations/HasOneOrMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Relations/HasOneOrMany.php -------------------------------------------------------------------------------- /src/Relations/HasParent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Relations/HasParent.php -------------------------------------------------------------------------------- /src/Relations/ManyToMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Relations/ManyToMany.php -------------------------------------------------------------------------------- /src/Relations/ManyToManyComments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Relations/ManyToManyComments.php -------------------------------------------------------------------------------- /src/Relations/ManyToManyPosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Relations/ManyToManyPosts.php -------------------------------------------------------------------------------- /src/Relations/ManyToManyTerms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Relations/ManyToManyTerms.php -------------------------------------------------------------------------------- /src/Relations/ManyToManyUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Relations/ManyToManyUsers.php -------------------------------------------------------------------------------- /src/Relations/Relation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Relations/Relation.php -------------------------------------------------------------------------------- /src/Saver/CommentSaver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Saver/CommentSaver.php -------------------------------------------------------------------------------- /src/Saver/ModelSaver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Saver/ModelSaver.php -------------------------------------------------------------------------------- /src/Saver/PostSaver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Saver/PostSaver.php -------------------------------------------------------------------------------- /src/Saver/Saver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Saver/Saver.php -------------------------------------------------------------------------------- /src/Saver/TermSaver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Saver/TermSaver.php -------------------------------------------------------------------------------- /src/Saver/UserSaver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Saver/UserSaver.php -------------------------------------------------------------------------------- /src/Table/Association/AssociationTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Association/AssociationTable.php -------------------------------------------------------------------------------- /src/Table/Association/BaseAssociationTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Association/BaseAssociationTable.php -------------------------------------------------------------------------------- /src/Table/Association/CommentAssociationTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Association/CommentAssociationTable.php -------------------------------------------------------------------------------- /src/Table/Association/ModelAssociationTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Association/ModelAssociationTable.php -------------------------------------------------------------------------------- /src/Table/Association/PostAssociationTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Association/PostAssociationTable.php -------------------------------------------------------------------------------- /src/Table/Association/TermAssociationTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Association/TermAssociationTable.php -------------------------------------------------------------------------------- /src/Table/Association/UserAssociationTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Association/UserAssociationTable.php -------------------------------------------------------------------------------- /src/Table/BaseTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/BaseTable.php -------------------------------------------------------------------------------- /src/Table/Column/BaseColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Column/BaseColumn.php -------------------------------------------------------------------------------- /src/Table/Column/Boolean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Column/Boolean.php -------------------------------------------------------------------------------- /src/Table/Column/Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Column/Column.php -------------------------------------------------------------------------------- /src/Table/Column/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Column/Date.php -------------------------------------------------------------------------------- /src/Table/Column/DateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Column/DateTime.php -------------------------------------------------------------------------------- /src/Table/Column/DecimalBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Column/DecimalBased.php -------------------------------------------------------------------------------- /src/Table/Column/Enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Column/Enum.php -------------------------------------------------------------------------------- /src/Table/Column/Foreign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Column/Foreign.php -------------------------------------------------------------------------------- /src/Table/Column/ForeignComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Column/ForeignComment.php -------------------------------------------------------------------------------- /src/Table/Column/ForeignModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Column/ForeignModel.php -------------------------------------------------------------------------------- /src/Table/Column/ForeignPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Column/ForeignPost.php -------------------------------------------------------------------------------- /src/Table/Column/ForeignTerm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Column/ForeignTerm.php -------------------------------------------------------------------------------- /src/Table/Column/ForeignUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Column/ForeignUser.php -------------------------------------------------------------------------------- /src/Table/Column/IntegerBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Column/IntegerBased.php -------------------------------------------------------------------------------- /src/Table/Column/SimpleForeign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Column/SimpleForeign.php -------------------------------------------------------------------------------- /src/Table/Column/StringBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Column/StringBased.php -------------------------------------------------------------------------------- /src/Table/Column/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Column/Time.php -------------------------------------------------------------------------------- /src/Table/ForeignKey/DeleteConstrainable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/ForeignKey/DeleteConstrainable.php -------------------------------------------------------------------------------- /src/Table/ForeignKey/DeleteConstrained.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/ForeignKey/DeleteConstrained.php -------------------------------------------------------------------------------- /src/Table/InMemoryTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/InMemoryTable.php -------------------------------------------------------------------------------- /src/Table/Plugins/DeleteConstrainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Plugins/DeleteConstrainer.php -------------------------------------------------------------------------------- /src/Table/Plugins/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Plugins/Plugin.php -------------------------------------------------------------------------------- /src/Table/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/Table.php -------------------------------------------------------------------------------- /src/Table/TimestampedMemoryTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/TimestampedMemoryTable.php -------------------------------------------------------------------------------- /src/Table/TimestampedTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/Table/TimestampedTable.php -------------------------------------------------------------------------------- /src/WP/Comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/WP/Comments.php -------------------------------------------------------------------------------- /src/WP/PostMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/WP/PostMeta.php -------------------------------------------------------------------------------- /src/WP/Posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/WP/Posts.php -------------------------------------------------------------------------------- /src/WP/TermTaxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/WP/TermTaxonomy.php -------------------------------------------------------------------------------- /src/WP/Terms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/WP/Terms.php -------------------------------------------------------------------------------- /src/WP/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/WP/Users.php -------------------------------------------------------------------------------- /src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/functions.php -------------------------------------------------------------------------------- /src/load.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/src/load.php -------------------------------------------------------------------------------- /tests/Stub/Models/Actor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Models/Actor.php -------------------------------------------------------------------------------- /tests/Stub/Models/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Models/Author.php -------------------------------------------------------------------------------- /tests/Stub/Models/AuthorSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Models/AuthorSession.php -------------------------------------------------------------------------------- /tests/Stub/Models/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Models/Book.php -------------------------------------------------------------------------------- /tests/Stub/Models/Gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Models/Gallery.php -------------------------------------------------------------------------------- /tests/Stub/Models/Library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Models/Library.php -------------------------------------------------------------------------------- /tests/Stub/Models/ModelWithAllForeign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Models/ModelWithAllForeign.php -------------------------------------------------------------------------------- /tests/Stub/Models/ModelWithForeignPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Models/ModelWithForeignPost.php -------------------------------------------------------------------------------- /tests/Stub/Models/ModelWithMutators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Models/ModelWithMutators.php -------------------------------------------------------------------------------- /tests/Stub/Models/Movie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Models/Movie.php -------------------------------------------------------------------------------- /tests/Stub/Models/PHP54.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Models/PHP54.php -------------------------------------------------------------------------------- /tests/Stub/Models/Review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Models/Review.php -------------------------------------------------------------------------------- /tests/Stub/Models/Uncached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Models/Uncached.php -------------------------------------------------------------------------------- /tests/Stub/PublishedScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/PublishedScope.php -------------------------------------------------------------------------------- /tests/Stub/Tables/Actors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Tables/Actors.php -------------------------------------------------------------------------------- /tests/Stub/Tables/AuthorSessions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Tables/AuthorSessions.php -------------------------------------------------------------------------------- /tests/Stub/Tables/Authors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Tables/Authors.php -------------------------------------------------------------------------------- /tests/Stub/Tables/Books.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Tables/Books.php -------------------------------------------------------------------------------- /tests/Stub/Tables/Galleries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Tables/Galleries.php -------------------------------------------------------------------------------- /tests/Stub/Tables/Libraries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Tables/Libraries.php -------------------------------------------------------------------------------- /tests/Stub/Tables/Movies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Tables/Movies.php -------------------------------------------------------------------------------- /tests/Stub/Tables/PHP54s.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Tables/PHP54s.php -------------------------------------------------------------------------------- /tests/Stub/Tables/Reviews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Tables/Reviews.php -------------------------------------------------------------------------------- /tests/Stub/Tables/TableWithAllForeign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Tables/TableWithAllForeign.php -------------------------------------------------------------------------------- /tests/Stub/Tables/TableWithForeignPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Tables/TableWithForeignPost.php -------------------------------------------------------------------------------- /tests/Stub/Tables/Uncached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/Tables/Uncached.php -------------------------------------------------------------------------------- /tests/Stub/builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/builder.php -------------------------------------------------------------------------------- /tests/Stub/model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/model.php -------------------------------------------------------------------------------- /tests/Stub/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/Stub/table.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/integration/foreign-key/test-delete-constraints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/integration/foreign-key/test-delete-constraints.php -------------------------------------------------------------------------------- /tests/integration/meta/test-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/integration/meta/test-meta.php -------------------------------------------------------------------------------- /tests/integration/meta/test-trait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/integration/meta/test-trait.php -------------------------------------------------------------------------------- /tests/integration/relations/test-belongs-to-many.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/integration/relations/test-belongs-to-many.php -------------------------------------------------------------------------------- /tests/integration/relations/test-has-foreign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/integration/relations/test-has-foreign.php -------------------------------------------------------------------------------- /tests/integration/relations/test-has-many.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/integration/relations/test-has-many.php -------------------------------------------------------------------------------- /tests/integration/relations/test-has-one.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/integration/relations/test-has-one.php -------------------------------------------------------------------------------- /tests/integration/relations/test-many-to-many.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/integration/relations/test-many-to-many.php -------------------------------------------------------------------------------- /tests/integration/relations/test-nested.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/integration/relations/test-nested.php -------------------------------------------------------------------------------- /tests/integration/test-crud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/integration/test-crud.php -------------------------------------------------------------------------------- /tests/integration/test-events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/integration/test-events.php -------------------------------------------------------------------------------- /tests/integration/test-fluent-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/integration/test-fluent-query.php -------------------------------------------------------------------------------- /tests/integration/test-helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/integration/test-helper.php -------------------------------------------------------------------------------- /tests/integration/test-mutators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/integration/test-mutators.php -------------------------------------------------------------------------------- /tests/integration/test-scopes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/integration/test-scopes.php -------------------------------------------------------------------------------- /tests/integration/test-trash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/integration/test-trash.php -------------------------------------------------------------------------------- /tests/integration/test-uncached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/integration/test-uncached.php -------------------------------------------------------------------------------- /tests/unit/Columns/test-base-column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/Columns/test-base-column.php -------------------------------------------------------------------------------- /tests/unit/Columns/test-boolean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/Columns/test-boolean.php -------------------------------------------------------------------------------- /tests/unit/Columns/test-date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/Columns/test-date.php -------------------------------------------------------------------------------- /tests/unit/Columns/test-datetime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/Columns/test-datetime.php -------------------------------------------------------------------------------- /tests/unit/Columns/test-decimal-based.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/Columns/test-decimal-based.php -------------------------------------------------------------------------------- /tests/unit/Columns/test-foreign-comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/Columns/test-foreign-comment.php -------------------------------------------------------------------------------- /tests/unit/Columns/test-foreign-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/Columns/test-foreign-post.php -------------------------------------------------------------------------------- /tests/unit/Columns/test-foreign-term.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/Columns/test-foreign-term.php -------------------------------------------------------------------------------- /tests/unit/Columns/test-foreign-user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/Columns/test-foreign-user.php -------------------------------------------------------------------------------- /tests/unit/Columns/test-integer-based.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/Columns/test-integer-based.php -------------------------------------------------------------------------------- /tests/unit/Columns/test-simple-foreign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/Columns/test-simple-foreign.php -------------------------------------------------------------------------------- /tests/unit/Columns/test-string-based.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/Columns/test-string-based.php -------------------------------------------------------------------------------- /tests/unit/Columns/test-time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/Columns/test-time.php -------------------------------------------------------------------------------- /tests/unit/Saver/test-comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/Saver/test-comment.php -------------------------------------------------------------------------------- /tests/unit/Saver/test-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/Saver/test-post.php -------------------------------------------------------------------------------- /tests/unit/Saver/test-term.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/Saver/test-term.php -------------------------------------------------------------------------------- /tests/unit/Saver/test-user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/Saver/test-user.php -------------------------------------------------------------------------------- /tests/unit/columns/test-enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/columns/test-enum.php -------------------------------------------------------------------------------- /tests/unit/query/tag/test-from.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/query/tag/test-from.php -------------------------------------------------------------------------------- /tests/unit/query/tag/test-generic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/query/tag/test-generic.php -------------------------------------------------------------------------------- /tests/unit/query/tag/test-group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/query/tag/test-group.php -------------------------------------------------------------------------------- /tests/unit/query/tag/test-having.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/query/tag/test-having.php -------------------------------------------------------------------------------- /tests/unit/query/tag/test-join.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/query/tag/test-join.php -------------------------------------------------------------------------------- /tests/unit/query/tag/test-limit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/query/tag/test-limit.php -------------------------------------------------------------------------------- /tests/unit/query/tag/test-order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/query/tag/test-order.php -------------------------------------------------------------------------------- /tests/unit/query/tag/test-select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/query/tag/test-select.php -------------------------------------------------------------------------------- /tests/unit/query/tag/test-where-date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/query/tag/test-where-date.php -------------------------------------------------------------------------------- /tests/unit/query/tag/test-where.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/query/tag/test-where.php -------------------------------------------------------------------------------- /tests/unit/query/test-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/query/test-builder.php -------------------------------------------------------------------------------- /tests/unit/query/test-complex-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/query/test-complex-query.php -------------------------------------------------------------------------------- /tests/unit/query/test-fluent-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/query/test-fluent-query.php -------------------------------------------------------------------------------- /tests/unit/query/test-simple-query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/query/test-simple-query.php -------------------------------------------------------------------------------- /tests/unit/test-collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/test-collection.php -------------------------------------------------------------------------------- /tests/unit/test-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/test-manager.php -------------------------------------------------------------------------------- /tests/unit/test-model-php7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iron-bound-designs/IronBound-DB/HEAD/tests/unit/test-model-php7.php --------------------------------------------------------------------------------