├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── examples ├── .gitignore ├── composer.json ├── extending.php └── quickstart.php ├── phpunit.xml ├── src └── PHPixie │ ├── ORM.php │ └── ORM │ ├── Builder.php │ ├── Conditions.php │ ├── Conditions │ ├── Builder.php │ ├── Builder │ │ ├── Container.php │ │ └── Proxy.php │ ├── Condition.php │ └── Condition │ │ ├── Collection.php │ │ ├── Collection │ │ ├── Group.php │ │ ├── Placeholder.php │ │ ├── RelatedTo.php │ │ └── RelatedTo │ │ │ └── Group.php │ │ ├── Field.php │ │ ├── Field │ │ ├── Operator.php │ │ └── Subquery.php │ │ ├── Implementation.php │ │ ├── In.php │ │ └── In │ │ └── Item.php │ ├── Configs.php │ ├── Configs │ ├── Config.php │ └── Inflector.php │ ├── Data.php │ ├── Data │ ├── Diff.php │ ├── Diff │ │ └── Removing.php │ ├── Type.php │ ├── Type │ │ ├── Diffable.php │ │ └── Implementation.php │ └── Types │ │ ├── Document.php │ │ ├── Document │ │ ├── Builder.php │ │ ├── Diffable.php │ │ ├── Node.php │ │ └── Node │ │ │ ├── ArrayNode.php │ │ │ ├── ArrayNode │ │ │ └── Iterator.php │ │ │ └── Document.php │ │ └── Map.php │ ├── Database.php │ ├── Drivers.php │ ├── Drivers │ ├── Driver.php │ └── Driver │ │ ├── InterBase.php │ │ ├── Mongo.php │ │ ├── Mongo │ │ ├── Config.php │ │ ├── Entity.php │ │ ├── Query.php │ │ └── Repository.php │ │ ├── PDO.php │ │ ├── PDO │ │ ├── Config.php │ │ ├── Entity.php │ │ ├── Query.php │ │ └── Repository.php │ │ └── SQL │ │ ├── Config.php │ │ ├── Entity.php │ │ ├── Query.php │ │ └── Repository.php │ ├── Exception.php │ ├── Exception │ ├── Builder.php │ ├── Data.php │ ├── Entity.php │ ├── Loader.php │ ├── Mapper.php │ ├── Model.php │ ├── Plan.php │ ├── Planner.php │ ├── Query.php │ └── Relationship.php │ ├── Loaders.php │ ├── Loaders │ ├── Iterator.php │ ├── Loader.php │ └── Loader │ │ ├── Embedded.php │ │ ├── Embedded │ │ └── ArrayNode.php │ │ ├── MultiplePreloader.php │ │ ├── Proxy.php │ │ ├── Proxy │ │ ├── Caching.php │ │ ├── Editable.php │ │ └── Preloading.php │ │ ├── Repository.php │ │ └── Repository │ │ ├── DataIterator.php │ │ └── ReusableResult.php │ ├── Mappers.php │ ├── Mappers │ ├── Cascade │ │ ├── Mapper.php │ │ ├── Mapper │ │ │ └── Delete.php │ │ └── Path.php │ ├── Conditions.php │ ├── Conditions │ │ ├── Normalizer.php │ │ └── Optimizer.php │ ├── Preload.php │ ├── Preload │ │ └── Preloadable.php │ ├── Query.php │ └── Update.php │ ├── Maps.php │ ├── Maps │ ├── Map.php │ └── Map │ │ ├── Cascade.php │ │ ├── Cascade │ │ └── Delete.php │ │ ├── Preload.php │ │ ├── Property.php │ │ ├── Property │ │ ├── Entity.php │ │ └── Query.php │ │ └── Relationship.php │ ├── Models.php │ ├── Models │ ├── Model.php │ ├── Model │ │ ├── Config.php │ │ ├── Entity.php │ │ └── Implementation │ │ │ └── Entity.php │ └── Type │ │ ├── Database.php │ │ ├── Database │ │ ├── Config.php │ │ ├── Entity.php │ │ ├── Implementation │ │ │ ├── Entity.php │ │ │ ├── Query.php │ │ │ └── Repository.php │ │ ├── Query.php │ │ └── Repository.php │ │ ├── Embedded.php │ │ └── Embedded │ │ ├── Config.php │ │ ├── Entity.php │ │ └── Implementation │ │ └── Entity.php │ ├── Planners.php │ ├── Planners │ ├── Planner.php │ └── Planner │ │ ├── Document.php │ │ ├── In.php │ │ ├── In │ │ ├── Strategy.php │ │ └── Strategy │ │ │ ├── Multiquery.php │ │ │ └── Subquery.php │ │ ├── Pivot.php │ │ ├── Pivot │ │ ├── Pivot.php │ │ ├── Side.php │ │ ├── Strategy.php │ │ └── Strategy │ │ │ ├── Multiquery.php │ │ │ └── SQL.php │ │ ├── Query.php │ │ ├── Query │ │ ├── Strategy.php │ │ └── Strategy │ │ │ ├── Mongo.php │ │ │ └── SQL.php │ │ └── Update.php │ ├── Plans.php │ ├── Plans │ ├── Plan.php │ ├── Plan │ │ ├── Query.php │ │ ├── Query │ │ │ ├── Count.php │ │ │ └── Loader.php │ │ └── Steps.php │ └── Transaction.php │ ├── Relationships.php │ ├── Relationships │ ├── Relationship.php │ ├── Relationship │ │ ├── Handler.php │ │ ├── Handler │ │ │ ├── Cascading │ │ │ │ └── Delete.php │ │ │ ├── Mapping │ │ │ │ ├── Database.php │ │ │ │ └── Embedded.php │ │ │ └── Preloading.php │ │ ├── Implementation.php │ │ ├── Implementation │ │ │ ├── Handler.php │ │ │ ├── Preloader.php │ │ │ ├── Preloader │ │ │ │ ├── Result.php │ │ │ │ └── Result │ │ │ │ │ ├── Multiple.php │ │ │ │ │ ├── Multiple │ │ │ │ │ └── IdMap.php │ │ │ │ │ └── Single.php │ │ │ ├── Property.php │ │ │ ├── Property │ │ │ │ ├── Entity.php │ │ │ │ ├── Entity │ │ │ │ │ └── Single.php │ │ │ │ └── Query.php │ │ │ ├── Side.php │ │ │ └── Side │ │ │ │ └── Config.php │ │ ├── Preloader.php │ │ ├── Property.php │ │ ├── Property │ │ │ ├── Entity.php │ │ │ ├── Entity │ │ │ │ ├── Data.php │ │ │ │ └── Query.php │ │ │ └── Query.php │ │ ├── Side.php │ │ ├── Side │ │ │ ├── Cascade │ │ │ │ └── Delete.php │ │ │ ├── Preload.php │ │ │ ├── Property │ │ │ │ ├── Entity.php │ │ │ │ └── Query.php │ │ │ └── Relationship.php │ │ └── Type │ │ │ └── Database.php │ └── Type │ │ ├── Embeds.php │ │ ├── Embeds │ │ ├── Handler.php │ │ ├── Preload │ │ │ └── Result.php │ │ ├── Preloader.php │ │ ├── Property │ │ │ └── Entity.php │ │ ├── Side.php │ │ ├── Side │ │ │ └── Config.php │ │ └── Type │ │ │ ├── Many.php │ │ │ ├── Many │ │ │ ├── Handler.php │ │ │ ├── Preload │ │ │ │ └── Result.php │ │ │ ├── Preloader.php │ │ │ ├── Property │ │ │ │ └── Entity │ │ │ │ │ └── Items.php │ │ │ ├── Side.php │ │ │ └── Side │ │ │ │ └── Config.php │ │ │ ├── One.php │ │ │ └── One │ │ │ ├── Handler.php │ │ │ ├── Preload │ │ │ └── Result.php │ │ │ ├── Preloader.php │ │ │ ├── Property │ │ │ └── Entity │ │ │ │ └── Item.php │ │ │ ├── Side.php │ │ │ └── Side │ │ │ └── Config.php │ │ ├── ManyToMany.php │ │ ├── ManyToMany │ │ ├── Handler.php │ │ ├── Preloader.php │ │ ├── Property │ │ │ ├── Entity.php │ │ │ └── Query.php │ │ ├── Side.php │ │ └── Side │ │ │ └── Config.php │ │ ├── NestedSet.php │ │ ├── NestedSet │ │ ├── Handler.php │ │ ├── Planner.php │ │ ├── Preloader.php │ │ ├── Preloader │ │ │ ├── Children.php │ │ │ └── Parents.php │ │ ├── Property │ │ │ ├── Children │ │ │ │ └── Entity.php │ │ │ ├── Parent │ │ │ │ └── Entity.php │ │ │ └── Query.php │ │ ├── Side.php │ │ ├── Side │ │ │ ├── Config.php │ │ │ └── Entity.php │ │ ├── Steps.php │ │ └── Steps │ │ │ ├── AssertSafeDelete.php │ │ │ ├── MapQuery.php │ │ │ ├── MoveChild.php │ │ │ └── RemoveNodes.php │ │ ├── OneTo.php │ │ └── OneTo │ │ ├── Handler.php │ │ ├── Preloader │ │ └── Owner.php │ │ ├── Property │ │ ├── Entity.php │ │ ├── Entity │ │ │ └── Single.php │ │ ├── Query.php │ │ └── Query │ │ │ └── Single.php │ │ ├── Side.php │ │ ├── Side │ │ └── Config.php │ │ └── Type │ │ ├── Many.php │ │ ├── Many │ │ ├── Handler.php │ │ ├── Preloader │ │ │ ├── Items.php │ │ │ ├── Owner.php │ │ │ └── Property │ │ │ │ └── Owner.php │ │ ├── Property │ │ │ ├── Entity │ │ │ │ ├── Items.php │ │ │ │ └── Owner.php │ │ │ └── Query │ │ │ │ ├── Items.php │ │ │ │ └── Owner.php │ │ ├── Side.php │ │ ├── Side │ │ │ └── Config.php │ │ └── Value │ │ │ └── Preload │ │ │ └── Owner.php │ │ ├── One.php │ │ └── One │ │ ├── Handler.php │ │ ├── Preloader │ │ ├── Item.php │ │ └── Owner.php │ │ ├── Property │ │ ├── Entity.php │ │ └── Query.php │ │ ├── Side.php │ │ └── Side │ │ └── Config.php │ ├── Repositories.php │ ├── Steps.php │ ├── Steps │ ├── Result.php │ ├── Result │ │ ├── Filter.php │ │ └── Reusable.php │ ├── Step.php │ └── Step │ │ ├── GG.php │ │ ├── In.php │ │ ├── Pivot │ │ └── Cartesian.php │ │ ├── Query.php │ │ ├── Query │ │ ├── Count.php │ │ ├── Insert.php │ │ ├── Insert │ │ │ ├── Batch.php │ │ │ └── Batch │ │ │ │ ├── Data.php │ │ │ │ └── Data │ │ │ │ └── Unique.php │ │ ├── Result.php │ │ └── Result │ │ │ ├── Iterator.php │ │ │ └── Reusable.php │ │ ├── Update.php │ │ └── Update │ │ └── Map.php │ ├── Values.php │ ├── Values │ ├── OrderBy.php │ ├── Preload.php │ ├── Preload │ │ ├── Property.php │ │ └── Property │ │ │ └── Cascading.php │ ├── Update.php │ └── Update │ │ ├── Builder.php │ │ ├── Increment.php │ │ └── Remove.php │ ├── Wrappers.php │ └── Wrappers │ ├── Implementation.php │ ├── Model │ └── Entity.php │ └── Type │ ├── Database │ ├── Entity.php │ ├── Query.php │ └── Repository.php │ └── Embedded │ └── Entity.php └── tests ├── PHPixie └── Tests │ ├── ORM │ ├── BuilderTest.php │ ├── Conditions │ │ ├── Builder │ │ │ ├── ContainerTest.php │ │ │ └── ProxyTest.php │ │ └── Condition │ │ │ ├── Collection │ │ │ ├── GroupTest.php │ │ │ ├── PlaceholderTest.php │ │ │ └── RelatedTo │ │ │ │ └── GroupTest.php │ │ │ ├── Field │ │ │ ├── OperatorTest.php │ │ │ └── SubqueryTest.php │ │ │ ├── ImplementationTest.php │ │ │ └── InTest.php │ ├── ConditionsTest.php │ ├── Configs │ │ ├── ConfigTest.php │ │ └── InflectorTest.php │ ├── ConfigsTest.php │ ├── Data │ │ ├── Diff │ │ │ └── RemovingTest.php │ │ ├── DiffTest.php │ │ ├── Type │ │ │ └── ImplementationTest.php │ │ └── Types │ │ │ ├── Document │ │ │ ├── BuilderTest.php │ │ │ ├── DiffableTest.php │ │ │ ├── Node │ │ │ │ ├── ArrayNode │ │ │ │ │ └── IteratorTest.php │ │ │ │ ├── ArrayNodeTest.php │ │ │ │ └── DocumentTest.php │ │ │ └── NodeTest.php │ │ │ ├── DocumentTest.php │ │ │ └── MapTest.php │ ├── DataTest.php │ ├── DatabaseTest.php │ ├── Drivers │ │ ├── Driver │ │ │ ├── Mongo │ │ │ │ ├── ConfigTest.php │ │ │ │ ├── EntityTest.php │ │ │ │ ├── QueryTest.php │ │ │ │ └── RepositoryTest.php │ │ │ ├── MongoTest.php │ │ │ ├── PDO │ │ │ │ ├── ConfigTest.php │ │ │ │ ├── EntityTest.php │ │ │ │ ├── QueryTest.php │ │ │ │ └── RepositoryTest.php │ │ │ ├── PDOTest.php │ │ │ └── SQL │ │ │ │ ├── ConfigTest.php │ │ │ │ ├── EntityTest.php │ │ │ │ ├── QueryTest.php │ │ │ │ └── RepositoryTest.php │ │ └── DriverTest.php │ ├── DriversTest.php │ ├── Functional │ │ ├── Model │ │ │ ├── EntityTest.php │ │ │ └── QueryTest.php │ │ ├── ModelTest.php │ │ ├── Relationship │ │ │ ├── Embeds │ │ │ │ ├── ManyTest.php │ │ │ │ └── OneTest.php │ │ │ ├── EmbedsTest.php │ │ │ ├── ManyToManyTest.php │ │ │ ├── NestedSetTest.php │ │ │ ├── OneTo │ │ │ │ ├── ManyTest.php │ │ │ │ └── OneTest.php │ │ │ └── OneToTest.php │ │ ├── RelationshipTest.php │ │ └── Testcase.php │ ├── Loaders │ │ ├── IteratorTest.php │ │ ├── Loader │ │ │ ├── Embedded │ │ │ │ └── ArrayNodeTest.php │ │ │ ├── EmbeddedTest.php │ │ │ ├── MultiplePreloaderTest.php │ │ │ ├── Proxy │ │ │ │ ├── CachingTest.php │ │ │ │ ├── EditableTest.php │ │ │ │ └── PreloadingTest.php │ │ │ ├── ProxyTest.php │ │ │ ├── Repository │ │ │ │ ├── DataIteratorTest.php │ │ │ │ └── ReusableResultTest.php │ │ │ └── RepositoryTest.php │ │ └── LoaderTest.php │ ├── LoadersTest.php │ ├── Mappers │ │ ├── Cascade │ │ │ ├── Mapper │ │ │ │ └── DeleteTest.php │ │ │ ├── MapperTest.php │ │ │ └── PathTest.php │ │ ├── CascadeTest.php │ │ ├── Conditions │ │ │ ├── NormalizerTest.php │ │ │ └── OptimizerTest.php │ │ ├── ConditionsTest.php │ │ ├── PreloadTest.php │ │ ├── QueryTest.php │ │ └── UpdateTest.php │ ├── MappersTest.php │ ├── Maps │ │ ├── Map │ │ │ ├── Cascade │ │ │ │ └── DeleteTest.php │ │ │ ├── CascadeTest.php │ │ │ ├── PreloadTest.php │ │ │ ├── Property │ │ │ │ ├── EntityTest.php │ │ │ │ └── QueryTest.php │ │ │ ├── PropertyTest.php │ │ │ └── RelationshipTest.php │ │ └── MapTest.php │ ├── MapsTest.php │ ├── Models │ │ ├── Model │ │ │ ├── ConfigTest.php │ │ │ └── Implementation │ │ │ │ └── EntityTest.php │ │ ├── ModelTest.php │ │ └── Type │ │ │ ├── Database │ │ │ ├── ConfigTest.php │ │ │ └── Implementation │ │ │ │ ├── EntityTest.php │ │ │ │ ├── QueryTest.php │ │ │ │ └── RepositoryTest.php │ │ │ ├── DatabaseTest.php │ │ │ ├── Embedded │ │ │ ├── ConfigTest.php │ │ │ └── Implementation │ │ │ │ └── EntityTest.php │ │ │ └── EmbeddedTest.php │ ├── ModelsTest.php │ ├── Planners │ │ ├── Planner │ │ │ ├── DocumentTest.php │ │ │ ├── In │ │ │ │ ├── Strategy │ │ │ │ │ ├── MultiqueryTest.php │ │ │ │ │ └── SubqueryTest.php │ │ │ │ └── StrategyTest.php │ │ │ ├── InTest.php │ │ │ ├── Pivot │ │ │ │ ├── PivotTest.php │ │ │ │ ├── SideTest.php │ │ │ │ ├── Strategy │ │ │ │ │ ├── MutiqueryTest.php │ │ │ │ │ └── SQLTest.php │ │ │ │ └── StrategyTest.php │ │ │ ├── PivotTest.php │ │ │ ├── Query │ │ │ │ ├── Strategy │ │ │ │ │ ├── MongoTest.php │ │ │ │ │ └── SQLTest.php │ │ │ │ └── StrategyTest.php │ │ │ ├── QueryTest.php │ │ │ └── UpdateTest.php │ │ └── PlannerTest.php │ ├── PlannersTest.php │ ├── Plans │ │ ├── Plan │ │ │ ├── Query │ │ │ │ ├── CountTest.php │ │ │ │ └── LoaderTest.php │ │ │ ├── QueryTest.php │ │ │ └── StepsTest.php │ │ ├── PlanTest.php │ │ └── TransactionTest.php │ ├── PlansTest.php │ ├── Relationships │ │ ├── Relationship │ │ │ ├── Implementation │ │ │ │ ├── HandlerTest.php │ │ │ │ ├── Preloader │ │ │ │ │ ├── Result │ │ │ │ │ │ ├── Multiple │ │ │ │ │ │ │ └── IdMapTest.php │ │ │ │ │ │ ├── MultipleTest.php │ │ │ │ │ │ └── SingleTest.php │ │ │ │ │ └── ResultTest.php │ │ │ │ ├── PreloaderTest.php │ │ │ │ ├── Property │ │ │ │ │ ├── EntityTest.php │ │ │ │ │ └── QueryTest.php │ │ │ │ ├── PropertyTest.php │ │ │ │ ├── Side │ │ │ │ │ └── ConfigTest.php │ │ │ │ └── SideTest.php │ │ │ └── ImplementationTest.php │ │ └── Type │ │ │ ├── Embeds │ │ │ ├── HandlerTest.php │ │ │ ├── Preload │ │ │ │ └── ResultTest.php │ │ │ ├── PreloaderTest.php │ │ │ ├── Property │ │ │ │ └── EntityTest.php │ │ │ ├── Side │ │ │ │ └── ConfigTest.php │ │ │ ├── SideTest.php │ │ │ └── Type │ │ │ │ ├── Many │ │ │ │ ├── HandlerTest.php │ │ │ │ ├── Preload │ │ │ │ │ └── ResultTest.php │ │ │ │ ├── PreloaderTest.php │ │ │ │ ├── Property │ │ │ │ │ └── Entity │ │ │ │ │ │ └── ItemsTest.php │ │ │ │ ├── Side │ │ │ │ │ └── ConfigTest.php │ │ │ │ └── SideTest.php │ │ │ │ ├── ManyTest.php │ │ │ │ ├── One │ │ │ │ ├── HandlerTest.php │ │ │ │ ├── Preload │ │ │ │ │ └── ResultTest.php │ │ │ │ ├── PreloaderTest.php │ │ │ │ ├── Property │ │ │ │ │ └── Entity │ │ │ │ │ │ └── ItemTest.php │ │ │ │ ├── Side │ │ │ │ │ └── ConfigTest.php │ │ │ │ └── SideTest.php │ │ │ │ └── OneTest.php │ │ │ ├── EmbedsTest.php │ │ │ ├── ManyToMany │ │ │ ├── HandlerTest.php │ │ │ ├── PreloaderTest.php │ │ │ ├── Property │ │ │ │ ├── EntityTest.php │ │ │ │ └── QueryTest.php │ │ │ ├── Side │ │ │ │ └── ConfigTest.php │ │ │ └── SideTest.php │ │ │ ├── ManyToManyTest.php │ │ │ ├── OneTo │ │ │ ├── HandlerTest.php │ │ │ ├── Preloader │ │ │ │ └── OwnerTest.php │ │ │ ├── Property │ │ │ │ ├── Entity │ │ │ │ │ └── SingleTest.php │ │ │ │ ├── EntityTest.php │ │ │ │ ├── Query │ │ │ │ │ └── SingleTest.php │ │ │ │ └── QueryTest.php │ │ │ ├── Side │ │ │ │ └── ConfigTest.php │ │ │ ├── SideTest.php │ │ │ └── Type │ │ │ │ ├── Many │ │ │ │ ├── HandlerTest.php │ │ │ │ ├── Preloader │ │ │ │ │ ├── ItemsTest.php │ │ │ │ │ ├── OwnerTest.php │ │ │ │ │ └── Property │ │ │ │ │ │ └── OwnerTest.php │ │ │ │ ├── Property │ │ │ │ │ ├── Entity │ │ │ │ │ │ ├── ItemsTest.php │ │ │ │ │ │ └── OwnerTest.php │ │ │ │ │ └── Query │ │ │ │ │ │ ├── ItemsTest.php │ │ │ │ │ │ └── OwnerTest.php │ │ │ │ ├── Side │ │ │ │ │ └── ConfigTest.php │ │ │ │ ├── SideTest.php │ │ │ │ └── Value │ │ │ │ │ └── Preload │ │ │ │ │ └── OwnerTest.php │ │ │ │ ├── ManyTest.php │ │ │ │ ├── One │ │ │ │ ├── HandlerTest.php │ │ │ │ ├── Preloader │ │ │ │ │ ├── ItemTest.php │ │ │ │ │ └── OwnerTest.php │ │ │ │ ├── Property │ │ │ │ │ ├── EntityTest.php │ │ │ │ │ └── QueryTest.php │ │ │ │ ├── Side │ │ │ │ │ └── ConfigTest.php │ │ │ │ └── SideTest.php │ │ │ │ └── OneTest.php │ │ │ └── OneToTest.php │ ├── RelationshipsTest.php │ ├── RepositoriesTest.php │ ├── Steps │ │ ├── Result │ │ │ └── FilterTest.php │ │ ├── Step │ │ │ ├── InTest.php │ │ │ ├── Pivot │ │ │ │ └── CartesianTest.php │ │ │ ├── Query │ │ │ │ ├── CountTest.php │ │ │ │ ├── Insert │ │ │ │ │ ├── Batch │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ └── UniqueTest.php │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ └── BatchTest.php │ │ │ │ ├── InsertTest.php │ │ │ │ ├── Result │ │ │ │ │ ├── IteratorTest.php │ │ │ │ │ └── ReusableTest.php │ │ │ │ └── ResultTest.php │ │ │ ├── QueryTest.php │ │ │ ├── Update │ │ │ │ └── MapTest.php │ │ │ └── UpdateTest.php │ │ └── StepTest.php │ ├── StepsTest.php │ ├── Values │ │ ├── Preload │ │ │ ├── Property │ │ │ │ └── CascadingTest.php │ │ │ └── PropertyTest.php │ │ ├── PreloadTest.php │ │ ├── Update │ │ │ ├── BuilderTest.php │ │ │ ├── IncrementTest.php │ │ │ └── RemoveTest.php │ │ └── UpdateTest.php │ ├── ValuesTest.php │ └── Wrappers │ │ ├── ImplementationTest.php │ │ ├── Model │ │ └── EntityTest.php │ │ └── Type │ │ ├── Database │ │ ├── EntityTest.php │ │ ├── QueryTest.php │ │ └── RepositoryTest.php │ │ └── Embedded │ │ └── EntityTest.php │ └── ORMTest.php └── phpunit.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | .idea 4 | 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/composer.json -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor 3 | -------------------------------------------------------------------------------- /examples/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/examples/composer.json -------------------------------------------------------------------------------- /examples/extending.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/examples/extending.php -------------------------------------------------------------------------------- /examples/quickstart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/examples/quickstart.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/PHPixie/ORM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Builder.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Conditions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Conditions.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Conditions/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Conditions/Builder.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Conditions/Builder/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Conditions/Builder/Container.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Conditions/Builder/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Conditions/Builder/Proxy.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Conditions/Condition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Conditions/Condition.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Conditions/Condition/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Conditions/Condition/Collection.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Conditions/Condition/Collection/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Conditions/Condition/Collection/Group.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Conditions/Condition/Collection/Placeholder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Conditions/Condition/Collection/Placeholder.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Conditions/Condition/Collection/RelatedTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Conditions/Condition/Collection/RelatedTo.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Conditions/Condition/Collection/RelatedTo/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Conditions/Condition/Collection/RelatedTo/Group.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Conditions/Condition/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Conditions/Condition/Field.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Conditions/Condition/Field/Operator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Conditions/Condition/Field/Operator.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Conditions/Condition/Field/Subquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Conditions/Condition/Field/Subquery.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Conditions/Condition/Implementation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Conditions/Condition/Implementation.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Conditions/Condition/In.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Conditions/Condition/In.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Conditions/Condition/In/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Conditions/Condition/In/Item.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Configs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Configs.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Configs/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Configs/Config.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Configs/Inflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Configs/Inflector.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Data.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Data/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Data/Diff.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Data/Diff/Removing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Data/Diff/Removing.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Data/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Data/Type.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Data/Type/Diffable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Data/Type/Diffable.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Data/Type/Implementation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Data/Type/Implementation.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Data/Types/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Data/Types/Document.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Data/Types/Document/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Data/Types/Document/Builder.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Data/Types/Document/Diffable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Data/Types/Document/Diffable.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Data/Types/Document/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Data/Types/Document/Node.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Data/Types/Document/Node/ArrayNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Data/Types/Document/Node/ArrayNode.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Data/Types/Document/Node/ArrayNode/Iterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Data/Types/Document/Node/ArrayNode/Iterator.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Data/Types/Document/Node/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Data/Types/Document/Node/Document.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Data/Types/Map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Data/Types/Map.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Database.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Drivers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Drivers.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Drivers/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Drivers/Driver.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Drivers/Driver/InterBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Drivers/Driver/InterBase.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Drivers/Driver/Mongo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Drivers/Driver/Mongo.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Drivers/Driver/Mongo/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Drivers/Driver/Mongo/Config.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Drivers/Driver/Mongo/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Drivers/Driver/Mongo/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Drivers/Driver/Mongo/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Drivers/Driver/Mongo/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Drivers/Driver/Mongo/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Drivers/Driver/Mongo/Repository.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Drivers/Driver/PDO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Drivers/Driver/PDO.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Drivers/Driver/PDO/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Drivers/Driver/PDO/Config.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Drivers/Driver/PDO/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Drivers/Driver/PDO/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Drivers/Driver/PDO/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Drivers/Driver/PDO/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Drivers/Driver/PDO/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Drivers/Driver/PDO/Repository.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Drivers/Driver/SQL/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Drivers/Driver/SQL/Config.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Drivers/Driver/SQL/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Drivers/Driver/SQL/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Drivers/Driver/SQL/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Drivers/Driver/SQL/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Drivers/Driver/SQL/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Drivers/Driver/SQL/Repository.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Exception.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Exception/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Exception/Builder.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Exception/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Exception/Data.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Exception/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Exception/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Exception/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Exception/Loader.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Exception/Mapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Exception/Mapper.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Exception/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Exception/Model.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Exception/Plan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Exception/Plan.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Exception/Planner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Exception/Planner.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Exception/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Exception/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Exception/Relationship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Exception/Relationship.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Loaders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Loaders.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Loaders/Iterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Loaders/Iterator.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Loaders/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Loaders/Loader.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Loaders/Loader/Embedded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Loaders/Loader/Embedded.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Loaders/Loader/Embedded/ArrayNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Loaders/Loader/Embedded/ArrayNode.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Loaders/Loader/MultiplePreloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Loaders/Loader/MultiplePreloader.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Loaders/Loader/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Loaders/Loader/Proxy.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Loaders/Loader/Proxy/Caching.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Loaders/Loader/Proxy/Caching.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Loaders/Loader/Proxy/Editable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Loaders/Loader/Proxy/Editable.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Loaders/Loader/Proxy/Preloading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Loaders/Loader/Proxy/Preloading.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Loaders/Loader/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Loaders/Loader/Repository.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Loaders/Loader/Repository/DataIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Loaders/Loader/Repository/DataIterator.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Loaders/Loader/Repository/ReusableResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Loaders/Loader/Repository/ReusableResult.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Mappers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Mappers.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Mappers/Cascade/Mapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Mappers/Cascade/Mapper.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Mappers/Cascade/Mapper/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Mappers/Cascade/Mapper/Delete.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Mappers/Cascade/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Mappers/Cascade/Path.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Mappers/Conditions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Mappers/Conditions.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Mappers/Conditions/Normalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Mappers/Conditions/Normalizer.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Mappers/Conditions/Optimizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Mappers/Conditions/Optimizer.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Mappers/Preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Mappers/Preload.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Mappers/Preload/Preloadable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Mappers/Preload/Preloadable.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Mappers/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Mappers/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Mappers/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Mappers/Update.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Maps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Maps.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Maps/Map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Maps/Map.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Maps/Map/Cascade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Maps/Map/Cascade.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Maps/Map/Cascade/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Maps/Map/Cascade/Delete.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Maps/Map/Preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Maps/Map/Preload.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Maps/Map/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Maps/Map/Property.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Maps/Map/Property/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Maps/Map/Property/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Maps/Map/Property/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Maps/Map/Property/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Maps/Map/Relationship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Maps/Map/Relationship.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Models.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Models.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Models/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Models/Model.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Models/Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Models/Model/Config.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Models/Model/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Models/Model/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Models/Model/Implementation/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Models/Model/Implementation/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Models/Type/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Models/Type/Database.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Models/Type/Database/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Models/Type/Database/Config.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Models/Type/Database/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Models/Type/Database/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Models/Type/Database/Implementation/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Models/Type/Database/Implementation/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Models/Type/Database/Implementation/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Models/Type/Database/Implementation/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Models/Type/Database/Implementation/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Models/Type/Database/Implementation/Repository.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Models/Type/Database/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Models/Type/Database/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Models/Type/Database/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Models/Type/Database/Repository.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Models/Type/Embedded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Models/Type/Embedded.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Models/Type/Embedded/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Models/Type/Embedded/Config.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Models/Type/Embedded/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Models/Type/Embedded/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Models/Type/Embedded/Implementation/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Models/Type/Embedded/Implementation/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners/Planner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners/Planner.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners/Planner/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners/Planner/Document.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners/Planner/In.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners/Planner/In.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners/Planner/In/Strategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners/Planner/In/Strategy.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners/Planner/In/Strategy/Multiquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners/Planner/In/Strategy/Multiquery.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners/Planner/In/Strategy/Subquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners/Planner/In/Strategy/Subquery.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners/Planner/Pivot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners/Planner/Pivot.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners/Planner/Pivot/Pivot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners/Planner/Pivot/Pivot.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners/Planner/Pivot/Side.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners/Planner/Pivot/Side.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners/Planner/Pivot/Strategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners/Planner/Pivot/Strategy.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners/Planner/Pivot/Strategy/Multiquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners/Planner/Pivot/Strategy/Multiquery.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners/Planner/Pivot/Strategy/SQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners/Planner/Pivot/Strategy/SQL.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners/Planner/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners/Planner/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners/Planner/Query/Strategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners/Planner/Query/Strategy.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners/Planner/Query/Strategy/Mongo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners/Planner/Query/Strategy/Mongo.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners/Planner/Query/Strategy/SQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners/Planner/Query/Strategy/SQL.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Planners/Planner/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Planners/Planner/Update.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Plans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Plans.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Plans/Plan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Plans/Plan.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Plans/Plan/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Plans/Plan/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Plans/Plan/Query/Count.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Plans/Plan/Query/Count.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Plans/Plan/Query/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Plans/Plan/Query/Loader.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Plans/Plan/Steps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Plans/Plan/Steps.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Plans/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Plans/Transaction.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Handler.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Handler/Cascading/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Handler/Cascading/Delete.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Handler/Mapping/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Handler/Mapping/Database.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Handler/Mapping/Embedded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Handler/Mapping/Embedded.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Handler/Preloading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Handler/Preloading.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Implementation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Implementation.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Implementation/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Implementation/Handler.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Implementation/Preloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Implementation/Preloader.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Implementation/Preloader/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Implementation/Preloader/Result.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Implementation/Preloader/Result/Multiple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Implementation/Preloader/Result/Multiple.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Implementation/Preloader/Result/Multiple/IdMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Implementation/Preloader/Result/Multiple/IdMap.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Implementation/Preloader/Result/Single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Implementation/Preloader/Result/Single.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Implementation/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Implementation/Property.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Implementation/Property/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Implementation/Property/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Implementation/Property/Entity/Single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Implementation/Property/Entity/Single.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Implementation/Property/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Implementation/Property/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Implementation/Side.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Implementation/Side.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Implementation/Side/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Implementation/Side/Config.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Preloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Preloader.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Property.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Property/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Property/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Property/Entity/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Property/Entity/Data.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Property/Entity/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Property/Entity/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Property/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Property/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Side.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Side.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Side/Cascade/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Side/Cascade/Delete.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Side/Preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Side/Preload.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Side/Property/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Side/Property/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Side/Property/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Side/Property/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Side/Relationship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Side/Relationship.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Relationship/Type/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Relationship/Type/Database.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Handler.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Preload/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Preload/Result.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Preloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Preloader.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Property/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Property/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Side.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Side.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Side/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Side/Config.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Type/Many.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Type/Many.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Type/Many/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Type/Many/Handler.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Type/Many/Preload/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Type/Many/Preload/Result.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Type/Many/Preloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Type/Many/Preloader.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Type/Many/Property/Entity/Items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Type/Many/Property/Entity/Items.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Type/Many/Side.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Type/Many/Side.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Type/Many/Side/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Type/Many/Side/Config.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Type/One.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Type/One.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Type/One/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Type/One/Handler.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Type/One/Preload/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Type/One/Preload/Result.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Type/One/Preloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Type/One/Preloader.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Type/One/Property/Entity/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Type/One/Property/Entity/Item.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Type/One/Side.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Type/One/Side.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/Embeds/Type/One/Side/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/Embeds/Type/One/Side/Config.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/ManyToMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/ManyToMany.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/ManyToMany/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/ManyToMany/Handler.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/ManyToMany/Preloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/ManyToMany/Preloader.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/ManyToMany/Property/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/ManyToMany/Property/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/ManyToMany/Property/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/ManyToMany/Property/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/ManyToMany/Side.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/ManyToMany/Side.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/ManyToMany/Side/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/ManyToMany/Side/Config.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/NestedSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/NestedSet.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/NestedSet/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/NestedSet/Handler.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/NestedSet/Planner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/NestedSet/Planner.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/NestedSet/Preloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/NestedSet/Preloader.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/NestedSet/Preloader/Children.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/NestedSet/Preloader/Children.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/NestedSet/Preloader/Parents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/NestedSet/Preloader/Parents.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/NestedSet/Property/Children/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/NestedSet/Property/Children/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/NestedSet/Property/Parent/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/NestedSet/Property/Parent/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/NestedSet/Property/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/NestedSet/Property/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/NestedSet/Side.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/NestedSet/Side.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/NestedSet/Side/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/NestedSet/Side/Config.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/NestedSet/Side/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/NestedSet/Side/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/NestedSet/Steps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/NestedSet/Steps.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/NestedSet/Steps/AssertSafeDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/NestedSet/Steps/AssertSafeDelete.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/NestedSet/Steps/MapQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/NestedSet/Steps/MapQuery.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/NestedSet/Steps/MoveChild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/NestedSet/Steps/MoveChild.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/NestedSet/Steps/RemoveNodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/NestedSet/Steps/RemoveNodes.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Handler.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Preloader/Owner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Preloader/Owner.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Property/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Property/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Property/Entity/Single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Property/Entity/Single.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Property/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Property/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Property/Query/Single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Property/Query/Single.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Side.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Side.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Side/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Side/Config.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Handler.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Preloader/Items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Preloader/Items.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Preloader/Owner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Preloader/Owner.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Preloader/Property/Owner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Preloader/Property/Owner.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Property/Entity/Items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Property/Entity/Items.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Property/Entity/Owner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Property/Entity/Owner.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Property/Query/Items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Property/Query/Items.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Property/Query/Owner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Property/Query/Owner.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Side.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Side.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Side/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Side/Config.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Value/Preload/Owner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/Many/Value/Preload/Owner.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/One.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/One.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/One/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/One/Handler.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/One/Preloader/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/One/Preloader/Item.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/One/Preloader/Owner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/One/Preloader/Owner.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/One/Property/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/One/Property/Entity.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/One/Property/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/One/Property/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/One/Side.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/One/Side.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Relationships/Type/OneTo/Type/One/Side/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Relationships/Type/OneTo/Type/One/Side/Config.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Repositories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Repositories.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Result.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Result/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Result/Filter.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Result/Reusable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Result/Reusable.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Step.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Step.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Step/GG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Step/GG.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Step/In.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Step/In.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Step/Pivot/Cartesian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Step/Pivot/Cartesian.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Step/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Step/Query.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Step/Query/Count.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Step/Query/Count.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Step/Query/Insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Step/Query/Insert.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Step/Query/Insert/Batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Step/Query/Insert/Batch.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Step/Query/Insert/Batch/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Step/Query/Insert/Batch/Data.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Step/Query/Insert/Batch/Data/Unique.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Step/Query/Insert/Batch/Data/Unique.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Step/Query/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Step/Query/Result.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Step/Query/Result/Iterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Step/Query/Result/Iterator.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Step/Query/Result/Reusable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Step/Query/Result/Reusable.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Step/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Step/Update.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Steps/Step/Update/Map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Steps/Step/Update/Map.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Values.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Values.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Values/OrderBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Values/OrderBy.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Values/Preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Values/Preload.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Values/Preload/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Values/Preload/Property.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Values/Preload/Property/Cascading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Values/Preload/Property/Cascading.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Values/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Values/Update.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Values/Update/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Values/Update/Builder.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Values/Update/Increment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPixie/ORM/HEAD/src/PHPixie/ORM/Values/Update/Increment.php -------------------------------------------------------------------------------- /src/PHPixie/ORM/Values/Update/Remove.php: -------------------------------------------------------------------------------- 1 |