From 5a44d5a8e65c5b9d84ab20dfa9b922d99fc8ca56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Thu, 28 Dec 2023 18:25:31 +0100 Subject: [PATCH] Switch to PSR-4 It will make fuzzy matchers more efficient, and configuration files more readable. --- CONTRIBUTING.md | 4 +- UPGRADE.md | 2 +- ci/github/phpunit/mysqli.xml | 2 +- ci/github/phpunit/pdo_mysql.xml | 2 +- ci/github/phpunit/pdo_pgsql.xml | 2 +- ci/github/phpunit/pdo_sqlite.xml | 2 +- ci/github/phpunit/pgsql.xml | 2 +- ci/github/phpunit/sqlite3.xml | 2 +- composer.json | 8 +- docs/en/reference/events.rst | 26 +-- phpbench.json | 4 +- phpcs.xml.dist | 192 +++++++++--------- phpstan-baseline.neon | 126 ++++++------ phpstan-dbal3.neon | 16 +- phpstan-params.neon | 6 +- phpstan.neon | 26 +-- phpunit.xml.dist | 4 +- psalm-baseline.xml | 190 ++++++++--------- psalm.xml | 82 ++++---- {lib/Doctrine/ORM => src}/AbstractQuery.php | 0 {lib/Doctrine/ORM => src}/Cache.php | 0 .../Cache/AssociationCacheEntry.php | 0 .../ORM => src}/Cache/CacheConfiguration.php | 0 .../Doctrine/ORM => src}/Cache/CacheEntry.php | 0 .../ORM => src}/Cache/CacheException.php | 0 .../ORM => src}/Cache/CacheFactory.php | 0 {lib/Doctrine/ORM => src}/Cache/CacheKey.php | 0 .../Cache/CollectionCacheEntry.php | 0 .../ORM => src}/Cache/CollectionCacheKey.php | 0 .../ORM => src}/Cache/CollectionHydrator.php | 0 .../ORM => src}/Cache/ConcurrentRegion.php | 0 .../ORM => src}/Cache/DefaultCache.php | 0 .../ORM => src}/Cache/DefaultCacheFactory.php | 0 .../Cache/DefaultCollectionHydrator.php | 0 .../Cache/DefaultEntityHydrator.php | 0 .../ORM => src}/Cache/DefaultQueryCache.php | 0 .../ORM => src}/Cache/EntityCacheEntry.php | 0 .../ORM => src}/Cache/EntityCacheKey.php | 0 .../ORM => src}/Cache/EntityHydrator.php | 0 .../Cache/Exception/CacheException.php | 0 .../CannotUpdateReadOnlyCollection.php | 0 .../Exception/CannotUpdateReadOnlyEntity.php | 0 .../Cache/Exception/FeatureNotImplemented.php | 0 .../Cache/Exception/NonCacheableEntity.php | 0 .../NonCacheableEntityAssociation.php | 0 {lib/Doctrine/ORM => src}/Cache/Lock.php | 0 .../ORM => src}/Cache/LockException.php | 0 .../ORM => src}/Cache/Logging/CacheLogger.php | 0 .../Cache/Logging/CacheLoggerChain.php | 0 .../Cache/Logging/StatisticsCacheLogger.php | 0 .../Cache/Persister/CachedPersister.php | 0 .../AbstractCollectionPersister.php | 0 .../Collection/CachedCollectionPersister.php | 0 ...rictReadWriteCachedCollectionPersister.php | 0 .../ReadOnlyCachedCollectionPersister.php | 0 .../ReadWriteCachedCollectionPersister.php | 0 .../Entity/AbstractEntityPersister.php | 0 .../Entity/CachedEntityPersister.php | 0 ...onStrictReadWriteCachedEntityPersister.php | 0 .../Entity/ReadOnlyCachedEntityPersister.php | 0 .../Entity/ReadWriteCachedEntityPersister.php | 0 .../Doctrine/ORM => src}/Cache/QueryCache.php | 0 .../ORM => src}/Cache/QueryCacheEntry.php | 0 .../ORM => src}/Cache/QueryCacheKey.php | 0 .../ORM => src}/Cache/QueryCacheValidator.php | 0 {lib/Doctrine/ORM => src}/Cache/Region.php | 0 .../Cache/Region/DefaultRegion.php | 0 .../Cache/Region/FileLockRegion.php | 0 .../Cache/Region/UpdateTimestampCache.php | 0 .../Cache/RegionsConfiguration.php | 0 .../ORM => src}/Cache/TimestampCacheEntry.php | 0 .../ORM => src}/Cache/TimestampCacheKey.php | 0 .../Cache/TimestampQueryCacheValidator.php | 0 .../ORM => src}/Cache/TimestampRegion.php | 0 {lib/Doctrine/ORM => src}/Configuration.php | 0 .../Decorator/EntityManagerDecorator.php | 0 {lib/Doctrine/ORM => src}/EntityManager.php | 0 .../ORM => src}/EntityManagerInterface.php | 0 .../ORM => src}/EntityNotFoundException.php | 0 .../Doctrine/ORM => src}/EntityRepository.php | 0 .../ORM => src}/Event/ListenersInvoker.php | 0 .../Event/LoadClassMetadataEventArgs.php | 0 .../OnClassMetadataNotFoundEventArgs.php | 0 .../ORM => src}/Event/OnClearEventArgs.php | 0 .../ORM => src}/Event/OnFlushEventArgs.php | 0 .../ORM => src}/Event/PostFlushEventArgs.php | 0 .../ORM => src}/Event/PostLoadEventArgs.php | 0 .../Event/PostPersistEventArgs.php | 0 .../ORM => src}/Event/PostRemoveEventArgs.php | 0 .../ORM => src}/Event/PostUpdateEventArgs.php | 0 .../ORM => src}/Event/PreFlushEventArgs.php | 0 .../ORM => src}/Event/PrePersistEventArgs.php | 0 .../ORM => src}/Event/PreRemoveEventArgs.php | 0 .../ORM => src}/Event/PreUpdateEventArgs.php | 0 {lib/Doctrine/ORM => src}/Events.php | 0 .../Exception/ConfigurationException.php | 0 .../EntityIdentityCollisionException.php | 0 .../Exception/EntityManagerClosed.php | 0 .../Exception/EntityMissingAssignedId.php | 0 .../Exception/InvalidEntityRepository.php | 0 .../Exception/InvalidHydrationMode.php | 0 .../Exception/ManagerException.php | 0 .../Exception/MissingIdentifierField.php | 0 .../MissingMappingDriverImplementation.php | 0 .../MultipleSelectorsFoundException.php | 0 .../ORM => src}/Exception/NotSupported.php | 0 .../ORM => src}/Exception/ORMException.php | 0 .../Exception/PersisterException.php | 0 .../Exception/RepositoryException.php | 0 .../Exception/SchemaToolException.php | 0 .../Exception/UnexpectedAssociationValue.php | 0 .../UnrecognizedIdentifierFields.php | 0 .../ORM => src}/Id/AbstractIdGenerator.php | 0 .../ORM => src}/Id/AssignedGenerator.php | 0 .../Id/BigIntegerIdentityGenerator.php | 0 .../ORM => src}/Id/IdentityGenerator.php | 0 .../ORM => src}/Id/SequenceGenerator.php | 0 .../Internal/Hydration/AbstractHydrator.php | 0 .../Internal/Hydration/ArrayHydrator.php | 0 .../Internal/Hydration/HydrationException.php | 0 .../Internal/Hydration/ObjectHydrator.php | 0 .../Hydration/ScalarColumnHydrator.php | 0 .../Internal/Hydration/ScalarHydrator.php | 0 .../Hydration/SimpleObjectHydrator.php | 0 .../Hydration/SingleScalarHydrator.php | 0 .../Internal/HydrationCompleteHandler.php | 0 .../ORM => src}/Internal/QueryType.php | 0 .../ORM => src}/Internal/SQLResultCasing.php | 0 .../ORM => src}/Internal/TopologicalSort.php | 0 .../CycleDetectedException.php | 0 .../ORM => src}/LazyCriteriaCollection.php | 0 .../ORM => src}/Mapping/AnsiQuoteStrategy.php | 0 .../Mapping/ArrayAccessImplementation.php | 0 .../Mapping/AssociationMapping.php | 0 .../Mapping/AssociationOverride.php | 0 .../Mapping/AssociationOverrides.php | 0 .../ORM => src}/Mapping/AttributeOverride.php | 0 .../Mapping/AttributeOverrides.php | 0 .../Mapping/Builder/AssociationBuilder.php | 0 .../Mapping/Builder/ClassMetadataBuilder.php | 0 .../Mapping/Builder/EmbeddedBuilder.php | 0 .../Mapping/Builder/EntityListenerBuilder.php | 0 .../Mapping/Builder/FieldBuilder.php | 0 .../Builder/ManyToManyAssociationBuilder.php | 0 .../Builder/OneToManyAssociationBuilder.php | 0 {lib/Doctrine/ORM => src}/Mapping/Cache.php | 0 .../Mapping/ChainTypedFieldMapper.php | 0 .../Mapping/ChangeTrackingPolicy.php | 0 .../ORM => src}/Mapping/ClassMetadata.php | 0 .../Mapping/ClassMetadataFactory.php | 0 {lib/Doctrine/ORM => src}/Mapping/Column.php | 0 .../ORM => src}/Mapping/CustomIdGenerator.php | 0 .../Mapping/DefaultEntityListenerResolver.php | 0 .../Mapping/DefaultNamingStrategy.php | 0 .../Mapping/DefaultQuoteStrategy.php | 0 .../Mapping/DefaultTypedFieldMapper.php | 0 .../Mapping/DiscriminatorColumn.php | 0 .../Mapping/DiscriminatorColumnMapping.php | 0 .../ORM => src}/Mapping/DiscriminatorMap.php | 0 .../Mapping/Driver/AttributeDriver.php | 0 .../Mapping/Driver/AttributeReader.php | 0 .../Mapping/Driver/DatabaseDriver.php | 0 .../Mapping/Driver/ReflectionBasedDriver.php | 0 .../Driver/RepeatableAttributeCollection.php | 0 .../Mapping/Driver/SimplifiedXmlDriver.php | 0 .../ORM => src}/Mapping/Driver/XmlDriver.php | 2 +- .../ORM => src}/Mapping/Embeddable.php | 0 .../Doctrine/ORM => src}/Mapping/Embedded.php | 0 .../Mapping/EmbeddedClassMapping.php | 0 {lib/Doctrine/ORM => src}/Mapping/Entity.php | 0 .../Mapping/EntityListenerResolver.php | 0 .../ORM => src}/Mapping/EntityListeners.php | 0 .../Exception/InvalidCustomGenerator.php | 0 .../Exception/UnknownGeneratorType.php | 0 .../ORM => src}/Mapping/FieldMapping.php | 0 .../ORM => src}/Mapping/GeneratedValue.php | 0 .../Mapping/HasLifecycleCallbacks.php | 0 {lib/Doctrine/ORM => src}/Mapping/Id.php | 0 {lib/Doctrine/ORM => src}/Mapping/Index.php | 0 .../ORM => src}/Mapping/InheritanceType.php | 0 .../ORM => src}/Mapping/InverseJoinColumn.php | 0 .../Mapping/InverseSideMapping.php | 0 .../ORM => src}/Mapping/JoinColumn.php | 0 .../ORM => src}/Mapping/JoinColumnMapping.php | 0 .../Mapping/JoinColumnProperties.php | 0 .../ORM => src}/Mapping/JoinColumns.php | 0 .../ORM => src}/Mapping/JoinTable.php | 0 .../ORM => src}/Mapping/JoinTableMapping.php | 0 .../ORM => src}/Mapping/ManyToMany.php | 0 .../Mapping/ManyToManyAssociationMapping.php | 0 .../Mapping/ManyToManyInverseSideMapping.php | 0 .../Mapping/ManyToManyOwningSideMapping.php | 0 .../ORM => src}/Mapping/ManyToOne.php | 0 .../Mapping/ManyToOneAssociationMapping.php | 0 .../ORM => src}/Mapping/MappedSuperclass.php | 0 .../ORM => src}/Mapping/MappingAttribute.php | 0 .../ORM => src}/Mapping/MappingException.php | 0 .../ORM => src}/Mapping/NamingStrategy.php | 0 .../ORM => src}/Mapping/OneToMany.php | 0 .../Mapping/OneToManyAssociationMapping.php | 0 .../Doctrine/ORM => src}/Mapping/OneToOne.php | 0 .../Mapping/OneToOneAssociationMapping.php | 0 .../Mapping/OneToOneInverseSideMapping.php | 0 .../Mapping/OneToOneOwningSideMapping.php | 0 {lib/Doctrine/ORM => src}/Mapping/OrderBy.php | 0 .../ORM => src}/Mapping/OwningSideMapping.php | 0 .../Doctrine/ORM => src}/Mapping/PostLoad.php | 0 .../ORM => src}/Mapping/PostPersist.php | 0 .../ORM => src}/Mapping/PostRemove.php | 0 .../ORM => src}/Mapping/PostUpdate.php | 0 .../Doctrine/ORM => src}/Mapping/PreFlush.php | 0 .../ORM => src}/Mapping/PrePersist.php | 0 .../ORM => src}/Mapping/PreRemove.php | 0 .../ORM => src}/Mapping/PreUpdate.php | 0 .../ORM => src}/Mapping/QuoteStrategy.php | 0 .../Mapping/ReflectionEmbeddedProperty.php | 0 .../Mapping/ReflectionEnumProperty.php | 0 .../Mapping/ReflectionReadonlyProperty.php | 0 .../ORM => src}/Mapping/SequenceGenerator.php | 0 {lib/Doctrine/ORM => src}/Mapping/Table.php | 0 .../Mapping/ToManyAssociationMapping.php | 0 ...ToManyAssociationMappingImplementation.php | 0 .../Mapping/ToManyInverseSideMapping.php | 0 .../Mapping/ToManyOwningSideMapping.php | 0 .../Mapping/ToOneAssociationMapping.php | 0 .../Mapping/ToOneInverseSideMapping.php | 0 .../Mapping/ToOneOwningSideMapping.php | 0 .../ORM => src}/Mapping/TypedFieldMapper.php | 0 .../Mapping/UnderscoreNamingStrategy.php | 0 .../ORM => src}/Mapping/UniqueConstraint.php | 0 {lib/Doctrine/ORM => src}/Mapping/Version.php | 0 {lib/Doctrine/ORM => src}/NativeQuery.php | 0 .../ORM => src}/NoResultException.php | 0 .../ORM => src}/NonUniqueResultException.php | 0 .../ORMInvalidArgumentException.php | 0 {lib/Doctrine/ORM => src}/ORMSetup.php | 0 .../ORM => src}/OptimisticLockException.php | 0 .../ORM => src}/PersistentCollection.php | 0 .../AbstractCollectionPersister.php | 0 .../Collection/CollectionPersister.php | 0 .../Collection/ManyToManyPersister.php | 0 .../Collection/OneToManyPersister.php | 0 .../AbstractEntityInheritancePersister.php | 0 .../Entity/BasicEntityPersister.php | 0 .../Entity/CachedPersisterContext.php | 0 .../Persisters/Entity/EntityPersister.php | 0 .../Entity/JoinedSubclassPersister.php | 0 .../Entity/SingleTablePersister.php | 0 .../CantUseInOperatorOnCompositeKeys.php | 0 .../Exception/InvalidOrientation.php | 0 .../Exception/UnrecognizedField.php | 0 ...MatchingAssociationFieldRequiresObject.php | 0 .../Persisters/PersisterException.php | 0 .../Persisters/SqlExpressionVisitor.php | 0 .../Persisters/SqlValueVisitor.php | 0 .../ORM => src}/PessimisticLockException.php | 0 .../Doctrine/ORM => src}/Proxy/Autoloader.php | 0 .../Proxy/DefaultProxyClassNameResolver.php | 0 .../ORM => src}/Proxy/InternalProxy.php | 0 .../ORM => src}/Proxy/NotAProxyClass.php | 0 .../ORM => src}/Proxy/ProxyFactory.php | 0 {lib/Doctrine/ORM => src}/Query.php | 0 .../ORM => src}/Query/AST/ASTException.php | 0 .../Query/AST/AggregateExpression.php | 0 .../Query/AST/ArithmeticExpression.php | 0 .../Query/AST/ArithmeticFactor.php | 0 .../ORM => src}/Query/AST/ArithmeticTerm.php | 0 .../Query/AST/BetweenExpression.php | 0 .../Query/AST/CoalesceExpression.php | 0 .../Query/AST/CollectionMemberExpression.php | 0 .../Query/AST/ComparisonExpression.php | 0 .../Query/AST/ConditionalExpression.php | 0 .../Query/AST/ConditionalFactor.php | 0 .../Query/AST/ConditionalPrimary.php | 0 .../ORM => src}/Query/AST/ConditionalTerm.php | 0 .../ORM => src}/Query/AST/DeleteClause.php | 0 .../ORM => src}/Query/AST/DeleteStatement.php | 0 .../EmptyCollectionComparisonExpression.php | 0 .../Query/AST/ExistsExpression.php | 0 .../ORM => src}/Query/AST/FromClause.php | 0 .../Query/AST/Functions/AbsFunction.php | 0 .../Query/AST/Functions/AvgFunction.php | 0 .../Query/AST/Functions/BitAndFunction.php | 0 .../Query/AST/Functions/BitOrFunction.php | 0 .../Query/AST/Functions/ConcatFunction.php | 0 .../Query/AST/Functions/CountFunction.php | 0 .../AST/Functions/CurrentDateFunction.php | 0 .../AST/Functions/CurrentTimeFunction.php | 0 .../Functions/CurrentTimestampFunction.php | 0 .../Query/AST/Functions/DateAddFunction.php | 0 .../Query/AST/Functions/DateDiffFunction.php | 0 .../Query/AST/Functions/DateSubFunction.php | 0 .../Query/AST/Functions/FunctionNode.php | 0 .../Query/AST/Functions/IdentityFunction.php | 0 .../Query/AST/Functions/LengthFunction.php | 0 .../Query/AST/Functions/LocateFunction.php | 0 .../Query/AST/Functions/LowerFunction.php | 0 .../Query/AST/Functions/MaxFunction.php | 0 .../Query/AST/Functions/MinFunction.php | 0 .../Query/AST/Functions/ModFunction.php | 0 .../Query/AST/Functions/SizeFunction.php | 0 .../Query/AST/Functions/SqrtFunction.php | 0 .../Query/AST/Functions/SubstringFunction.php | 0 .../Query/AST/Functions/SumFunction.php | 0 .../Query/AST/Functions/TrimFunction.php | 0 .../Query/AST/Functions/UpperFunction.php | 0 .../Query/AST/GeneralCaseExpression.php | 0 .../ORM => src}/Query/AST/GroupByClause.php | 0 .../ORM => src}/Query/AST/HavingClause.php | 0 .../AST/IdentificationVariableDeclaration.php | 0 .../Query/AST/InListExpression.php | 0 .../Query/AST/InSubselectExpression.php | 0 .../ORM => src}/Query/AST/IndexBy.php | 0 .../ORM => src}/Query/AST/InputParameter.php | 0 .../Query/AST/InstanceOfExpression.php | 0 {lib/Doctrine/ORM => src}/Query/AST/Join.php | 0 .../Query/AST/JoinAssociationDeclaration.php | 0 .../AST/JoinAssociationPathExpression.php | 0 .../Query/AST/JoinClassPathExpression.php | 0 .../Query/AST/JoinVariableDeclaration.php | 0 .../ORM => src}/Query/AST/LikeExpression.php | 0 .../ORM => src}/Query/AST/Literal.php | 0 .../Query/AST/NewObjectExpression.php | 0 {lib/Doctrine/ORM => src}/Query/AST/Node.php | 0 .../Query/AST/NullComparisonExpression.php | 0 .../Query/AST/NullIfExpression.php | 0 .../ORM => src}/Query/AST/OrderByClause.php | 0 .../ORM => src}/Query/AST/OrderByItem.php | 0 .../Query/AST/ParenthesisExpression.php | 0 .../ORM => src}/Query/AST/PathExpression.php | 0 .../AST/Phase2OptimizableConditional.php | 0 .../Query/AST/QuantifiedExpression.php | 0 .../Query/AST/RangeVariableDeclaration.php | 0 .../ORM => src}/Query/AST/SelectClause.php | 0 .../Query/AST/SelectExpression.php | 0 .../ORM => src}/Query/AST/SelectStatement.php | 0 .../Query/AST/SimpleArithmeticExpression.php | 0 .../Query/AST/SimpleCaseExpression.php | 0 .../Query/AST/SimpleSelectClause.php | 0 .../Query/AST/SimpleSelectExpression.php | 0 .../Query/AST/SimpleWhenClause.php | 0 .../ORM => src}/Query/AST/Subselect.php | 0 .../Query/AST/SubselectFromClause.php | 0 ...electIdentificationVariableDeclaration.php | 0 .../ORM => src}/Query/AST/TypedExpression.php | 0 .../ORM => src}/Query/AST/UpdateClause.php | 0 .../ORM => src}/Query/AST/UpdateItem.php | 0 .../ORM => src}/Query/AST/UpdateStatement.php | 0 .../ORM => src}/Query/AST/WhenClause.php | 0 .../ORM => src}/Query/AST/WhereClause.php | 0 .../Query/Exec/AbstractSqlExecutor.php | 0 .../Query/Exec/MultiTableDeleteExecutor.php | 0 .../Query/Exec/MultiTableUpdateExecutor.php | 0 .../Query/Exec/SingleSelectExecutor.php | 0 .../Exec/SingleTableDeleteUpdateExecutor.php | 0 {lib/Doctrine/ORM => src}/Query/Expr.php | 0 {lib/Doctrine/ORM => src}/Query/Expr/Andx.php | 0 {lib/Doctrine/ORM => src}/Query/Expr/Base.php | 0 .../ORM => src}/Query/Expr/Comparison.php | 0 .../ORM => src}/Query/Expr/Composite.php | 0 {lib/Doctrine/ORM => src}/Query/Expr/From.php | 0 {lib/Doctrine/ORM => src}/Query/Expr/Func.php | 0 .../ORM => src}/Query/Expr/GroupBy.php | 0 {lib/Doctrine/ORM => src}/Query/Expr/Join.php | 0 .../ORM => src}/Query/Expr/Literal.php | 0 {lib/Doctrine/ORM => src}/Query/Expr/Math.php | 0 .../ORM => src}/Query/Expr/OrderBy.php | 0 {lib/Doctrine/ORM => src}/Query/Expr/Orx.php | 0 .../ORM => src}/Query/Expr/Select.php | 0 .../Query/Filter/FilterException.php | 0 .../ORM => src}/Query/Filter/SQLFilter.php | 0 .../ORM => src}/Query/FilterCollection.php | 0 {lib/Doctrine/ORM => src}/Query/Lexer.php | 0 {lib/Doctrine/ORM => src}/Query/Parameter.php | 0 .../Query/ParameterTypeInferer.php | 0 {lib/Doctrine/ORM => src}/Query/Parser.php | 0 .../ORM => src}/Query/ParserResult.php | 0 {lib/Doctrine/ORM => src}/Query/Printer.php | 0 .../ORM => src}/Query/QueryException.php | 0 .../Query/QueryExpressionVisitor.php | 0 .../ORM => src}/Query/ResultSetMapping.php | 0 .../Query/ResultSetMappingBuilder.php | 0 {lib/Doctrine/ORM => src}/Query/SqlWalker.php | 0 {lib/Doctrine/ORM => src}/Query/TokenType.php | 0 .../Doctrine/ORM => src}/Query/TreeWalker.php | 0 .../ORM => src}/Query/TreeWalkerAdapter.php | 0 .../ORM => src}/Query/TreeWalkerChain.php | 0 {lib/Doctrine/ORM => src}/QueryBuilder.php | 0 .../Repository/DefaultRepositoryFactory.php | 0 .../Exception/InvalidFindByCall.php | 0 .../Exception/InvalidMagicMethodCall.php | 0 .../Repository/RepositoryFactory.php | 0 .../Tools/AttachEntityListenersListener.php | 0 .../Command/AbstractEntityManagerCommand.php | 0 .../ClearCache/CollectionRegionCommand.php | 0 .../ClearCache/EntityRegionCommand.php | 0 .../Command/ClearCache/MetadataCommand.php | 0 .../Command/ClearCache/QueryCommand.php | 0 .../Command/ClearCache/QueryRegionCommand.php | 0 .../Command/ClearCache/ResultCommand.php | 0 .../Command/GenerateProxiesCommand.php | 0 .../Tools/Console/Command/InfoCommand.php | 0 .../Command/MappingDescribeCommand.php | 0 .../Tools/Console/Command/RunDqlCommand.php | 0 .../Command/SchemaTool/AbstractCommand.php | 0 .../Command/SchemaTool/CreateCommand.php | 0 .../Command/SchemaTool/DropCommand.php | 0 .../Command/SchemaTool/UpdateCommand.php | 0 .../Console/Command/ValidateSchemaCommand.php | 0 .../Tools/Console/ConsoleRunner.php | 0 .../Tools/Console/EntityManagerProvider.php | 0 .../ConnectionFromManagerProvider.php | 0 .../SingleManagerProvider.php | 0 .../UnknownManagerException.php | 0 .../Tools/Console/MetadataFilter.php | 0 {lib/Doctrine/ORM => src}/Tools/Debug.php | 0 .../Tools/DebugUnitOfWorkListener.php | 0 .../Tools/Event/GenerateSchemaEventArgs.php | 0 .../Event/GenerateSchemaTableEventArgs.php | 0 .../Exception/MissingColumnException.php | 0 .../Tools/Exception/NotSupported.php | 0 .../Tools/Pagination/CountOutputWalker.php | 0 .../Tools/Pagination/CountWalker.php | 0 .../RowNumberOverFunctionNotEnabled.php | 0 .../Pagination/LimitSubqueryOutputWalker.php | 0 .../Tools/Pagination/LimitSubqueryWalker.php | 0 .../Tools/Pagination/Paginator.php | 0 .../Tools/Pagination/RootTypeWalker.php | 0 .../Pagination/RowNumberOverFunction.php | 0 .../Tools/Pagination/WhereInWalker.php | 0 .../Tools/ResolveTargetEntityListener.php | 0 .../Doctrine/ORM => src}/Tools/SchemaTool.php | 0 .../ORM => src}/Tools/SchemaValidator.php | 0 .../Doctrine/ORM => src}/Tools/ToolEvents.php | 0 .../ORM => src}/Tools/ToolsException.php | 0 .../TransactionRequiredException.php | 0 .../ORM => src}/UnexpectedResultException.php | 0 {lib/Doctrine/ORM => src}/UnitOfWork.php | 0 .../HierarchyDiscriminatorResolver.php | 0 .../Utility/IdentifierFlattener.php | 0 .../ORM => src}/Utility/LockSqlHelper.php | 0 .../ORM => src}/Utility/PersisterHelper.php | 0 tests/.gitignore | 6 +- .../Performance/ArrayResultFactory.php | 0 .../UnitOfWorkComputeChangesBench.php | 0 .../Performance/EntityManagerFactory.php | 0 ...etchJoinArrayHydrationPerformanceBench.php | 0 ...oinFullObjectHydrationPerformanceBench.php | 0 .../Hydration/SimpleHydrationBench.php | 0 .../SimpleInsertPerformanceBench.php | 0 ...pleQueryArrayHydrationPerformanceBench.php | 0 ...eryFullObjectHydrationPerformanceBench.php | 0 ...leQueryScalarHydrationPerformanceBench.php | 0 ...leInheritanceHydrationPerformanceBench.php | 0 ...TableInheritanceInsertPerformanceBench.php | 0 .../ProxyInitializationTimeBench.php | 0 .../ProxyInstantiationTimeBench.php | 0 .../Performance/Mock/NonLoadingPersister.php | 0 .../Mock/NonProxyLoadingEntityManager.php | 0 .../Mock/NonProxyLoadingUnitOfWork.php | 0 .../QueryBoundParameterProcessingBench.php | 0 .../Mapping/class-metadata-constructor.php | 0 .../Tools/Pagination/paginator-covariant.php | 0 .../StaticAnalysis/get-metadata.php | 0 .../Tests/DbalExtensions/Connection.php | 0 .../Tests/DbalExtensions/QueryLog.php | 0 .../Tests/DbalExtensions/SqlLogger.php | 0 .../Tests/DbalTypes/CustomIdObject.php | 0 .../Tests/DbalTypes/CustomIdObjectType.php | 0 .../Tests/DbalTypes/CustomIntType.php | 0 .../DbalTypes/GH8565EmployeePayloadType.php | 0 .../DbalTypes/GH8565ManagerPayloadType.php | 0 .../DbalTypes/NegativeToPositiveType.php | 0 .../Tests/DbalTypes/Rot13Type.php | 0 .../Tests/DbalTypes/UpperCaseStringType.php | 0 .../EventListener/CacheMetadataListener.php | 0 tests/{Doctrine => }/Tests/IterableTester.php | 0 .../Tests/Mocks/CacheEntryMock.php | 0 .../Tests/Mocks/CacheKeyMock.php | 0 .../Tests/Mocks/CacheRegionMock.php | 0 .../Tests/Mocks/CompatibilityType.php | 0 .../Tests/Mocks/ConcurrentRegionMock.php | 0 .../Tests/Mocks/CustomTreeWalkerJoin.php | 0 .../Tests/Mocks/EntityManagerMock.php | 0 .../Tests/Mocks/EntityPersisterMock.php | 0 .../Tests/Mocks/ExceptionConverterMock.php | 0 .../Tests/Mocks/MetadataDriverMock.php | 0 .../Tests/Mocks/NullSqlWalker.php | 0 .../Tests/Mocks/SchemaManagerMock.php | 0 .../Tests/Mocks/TimestampRegionMock.php | 0 .../Tests/Mocks/UnitOfWorkMock.php | 0 .../Tests/Models/CMS/CmsAddress.php | 0 .../Tests/Models/CMS/CmsAddressDTO.php | 0 .../Tests/Models/CMS/CmsAddressListener.php | 0 .../Tests/Models/CMS/CmsArticle.php | 0 .../Tests/Models/CMS/CmsComment.php | 0 .../Tests/Models/CMS/CmsEmail.php | 0 .../Tests/Models/CMS/CmsEmployee.php | 0 .../Tests/Models/CMS/CmsGroup.php | 0 .../Tests/Models/CMS/CmsPhonenumber.php | 0 .../Tests/Models/CMS/CmsTag.php | 0 .../Tests/Models/CMS/CmsUser.php | 0 .../Tests/Models/CMS/CmsUserDTO.php | 0 .../Tests/Models/Cache/Action.php | 0 .../Tests/Models/Cache/Address.php | 0 .../Tests/Models/Cache/Attraction.php | 0 .../Models/Cache/AttractionContactInfo.php | 0 .../Tests/Models/Cache/AttractionInfo.php | 0 .../Models/Cache/AttractionLocationInfo.php | 0 .../{Doctrine => }/Tests/Models/Cache/Bar.php | 0 .../Tests/Models/Cache/Beach.php | 0 .../Tests/Models/Cache/City.php | 0 .../Tests/Models/Cache/Client.php | 0 .../Tests/Models/Cache/ComplexAction.php | 0 .../Tests/Models/Cache/Country.php | 0 .../Tests/Models/Cache/Flight.php | 0 .../Tests/Models/Cache/Login.php | 0 .../Tests/Models/Cache/Person.php | 0 .../Tests/Models/Cache/Restaurant.php | 0 .../Tests/Models/Cache/State.php | 0 .../Tests/Models/Cache/Token.php | 0 .../Tests/Models/Cache/Travel.php | 0 .../Tests/Models/Cache/Traveler.php | 0 .../Tests/Models/Cache/TravelerProfile.php | 0 .../Models/Cache/TravelerProfileInfo.php | 0 .../Tests/Models/Company/CompanyAuction.php | 0 .../Tests/Models/Company/CompanyCar.php | 0 .../Tests/Models/Company/CompanyContract.php | 0 .../Company/CompanyContractListener.php | 0 .../Tests/Models/Company/CompanyEmployee.php | 0 .../Tests/Models/Company/CompanyEvent.php | 0 .../Models/Company/CompanyFixContract.php | 0 .../Models/Company/CompanyFlexContract.php | 0 .../Company/CompanyFlexUltraContract.php | 0 .../CompanyFlexUltraContractListener.php | 0 .../Tests/Models/Company/CompanyManager.php | 0 .../Models/Company/CompanyOrganization.php | 0 .../Tests/Models/Company/CompanyPerson.php | 0 .../Tests/Models/Company/CompanyRaffle.php | 0 .../JoinedChildClass.php | 0 .../JoinedDerivedChildClass.php | 0 .../JoinedDerivedIdentityClass.php | 0 .../JoinedDerivedRootClass.php | 0 .../JoinedRootClass.php | 0 .../SingleChildClass.php | 0 .../SingleRootClass.php | 0 .../CustomType/CustomIdObjectTypeChild.php | 0 .../CustomType/CustomIdObjectTypeParent.php | 0 .../Models/CustomType/CustomTypeChild.php | 0 .../Models/CustomType/CustomTypeParent.php | 0 .../Models/CustomType/CustomTypeUpperCase.php | 0 .../Models/DDC117/DDC117ApproveChanges.php | 0 .../Tests/Models/DDC117/DDC117Article.php | 0 .../Models/DDC117/DDC117ArticleDetails.php | 0 .../Tests/Models/DDC117/DDC117Editor.php | 0 .../Tests/Models/DDC117/DDC117Link.php | 0 .../Tests/Models/DDC117/DDC117Reference.php | 0 .../Tests/Models/DDC117/DDC117Translation.php | 0 .../DDC1476EntityWithDefaultFieldType.php | 0 .../Tests/Models/DDC1590/DDC1590Entity.php | 0 .../Tests/Models/DDC1590/DDC1590User.php | 0 .../Tests/Models/DDC1872/DDC1872Bar.php | 0 .../DDC1872ExampleEntityWithOverride.php | 0 .../DDC1872ExampleEntityWithoutOverride.php | 0 .../Models/DDC1872/DDC1872ExampleTrait.php | 0 .../Tests/Models/DDC2372/DDC2372Address.php | 0 .../Tests/Models/DDC2372/DDC2372Admin.php | 0 .../Tests/Models/DDC2372/DDC2372User.php | 0 .../Traits/DDC2372AddressAndAccessors.php | 0 .../Models/DDC2504/DDC2504ChildClass.php | 0 .../Models/DDC2504/DDC2504OtherClass.php | 0 .../Tests/Models/DDC2504/DDC2504RootClass.php | 0 .../Models/DDC2825/ExplicitSchemaAndTable.php | 0 .../DDC2825/SchemaAndTableInTableName.php | 0 .../DDC3231/DDC3231EntityRepository.php | 0 .../Tests/Models/DDC3231/DDC3231User1.php | 0 .../DDC3231/DDC3231User1NoNamespace.php | 0 .../Tests/Models/DDC3231/DDC3231User2.php | 0 .../DDC3231/DDC3231User2NoNamespace.php | 0 .../Tests/Models/DDC3293/DDC3293Address.php | 0 .../Tests/Models/DDC3293/DDC3293User.php | 0 .../Models/DDC3293/DDC3293UserPrefixed.php | 0 .../Tests/Models/DDC3346/DDC3346Article.php | 0 .../Tests/Models/DDC3346/DDC3346Author.php | 0 .../Tests/Models/DDC3579/DDC3579Admin.php | 0 .../Tests/Models/DDC3579/DDC3579Group.php | 0 .../Tests/Models/DDC3579/DDC3579User.php | 0 .../Tests/Models/DDC3597/DDC3597Image.php | 0 .../Tests/Models/DDC3597/DDC3597Media.php | 0 .../Tests/Models/DDC3597/DDC3597Root.php | 0 .../DDC3597/Embeddable/DDC3597Dimension.php | 0 .../Tests/Models/DDC3699/DDC3699Child.php | 0 .../Tests/Models/DDC3699/DDC3699Parent.php | 0 .../Models/DDC3699/DDC3699RelationMany.php | 0 .../Models/DDC3699/DDC3699RelationOne.php | 0 .../Tests/Models/DDC3711/DDC3711EntityA.php | 0 .../Tests/Models/DDC3711/DDC3711EntityB.php | 0 .../Tests/Models/DDC3899/DDC3899Contract.php | 0 .../Models/DDC3899/DDC3899FixContract.php | 0 .../Models/DDC3899/DDC3899FlexContract.php | 0 .../Tests/Models/DDC3899/DDC3899User.php | 0 .../Tests/Models/DDC4006/DDC4006User.php | 0 .../Tests/Models/DDC4006/DDC4006UserId.php | 0 .../Models/DDC5934/DDC5934BaseContract.php | 0 .../Tests/Models/DDC5934/DDC5934Contract.php | 0 .../Tests/Models/DDC5934/DDC5934Member.php | 0 .../Tests/Models/DDC6412/DDC6412File.php | 0 .../Models/DDC753/DDC753CustomRepository.php | 0 .../Models/DDC753/DDC753DefaultRepository.php | 0 .../DDC753EntityWithCustomRepository.php | 0 ...DC753EntityWithDefaultCustomRepository.php | 0 .../DDC753EntityWithInvalidRepository.php | 0 .../Models/DDC753/DDC753InvalidRepository.php | 0 .../Models/DDC869/DDC869ChequePayment.php | 0 .../Models/DDC869/DDC869CreditCardPayment.php | 0 .../Tests/Models/DDC869/DDC869Payment.php | 0 .../Models/DDC869/DDC869PaymentRepository.php | 0 .../Tests/Models/DDC889/DDC889Class.php | 0 .../Tests/Models/DDC889/DDC889Entity.php | 0 .../Tests/Models/DDC889/DDC889SuperClass.php | 0 .../Tests/Models/DDC964/DDC964Address.php | 0 .../Tests/Models/DDC964/DDC964Admin.php | 0 .../Tests/Models/DDC964/DDC964Group.php | 0 .../Tests/Models/DDC964/DDC964Guest.php | 0 .../Tests/Models/DDC964/DDC964User.php | 0 .../DtoWithArrayOfEnums.php | 0 .../DataTransferObjects/DtoWithEnum.php | 0 .../DirectoryTree/AbstractContentItem.php | 0 .../Tests/Models/DirectoryTree/Directory.php | 0 .../Tests/Models/DirectoryTree/File.php | 0 .../Tests/Models/ECommerce/ECommerceCart.php | 0 .../Models/ECommerce/ECommerceCategory.php | 0 .../Models/ECommerce/ECommerceCustomer.php | 0 .../Models/ECommerce/ECommerceFeature.php | 0 .../Models/ECommerce/ECommerceProduct.php | 0 .../Models/ECommerce/ECommerceShipping.php | 0 .../Tests/Models/Enums/AccessLevel.php | 0 .../Tests/Models/Enums/Card.php | 0 .../Tests/Models/Enums/CardWithDefault.php | 0 .../Tests/Models/Enums/CardWithNullable.php | 0 .../Tests/Models/Enums/City.php | 0 .../Tests/Models/Enums/Product.php | 0 .../Tests/Models/Enums/Quantity.php | 0 .../Tests/Models/Enums/Scale.php | 0 .../Tests/Models/Enums/Suit.php | 0 .../Tests/Models/Enums/TypedCard.php | 0 .../Models/Enums/TypedCardEnumCompositeId.php | 0 .../Tests/Models/Enums/TypedCardEnumId.php | 0 .../Tests/Models/Enums/Unit.php | 0 .../Tests/Models/Enums/UserStatus.php | 0 .../Tests/Models/Forum/ForumAvatar.php | 0 .../Tests/Models/Forum/ForumBoard.php | 0 .../Tests/Models/Forum/ForumCategory.php | 0 .../Tests/Models/Forum/ForumEntry.php | 0 .../Tests/Models/Forum/ForumUser.php | 0 .../Tests/Models/GH10132/Complex.php | 0 .../Tests/Models/GH10132/ComplexChild.php | 0 .../Tests/Models/GH10288/GH10288People.php | 0 .../Tests/Models/GH10334/GH10334Foo.php | 0 .../Models/GH10334/GH10334FooCollection.php | 0 .../Tests/Models/GH10334/GH10334Product.php | 0 .../Models/GH10334/GH10334ProductType.php | 0 .../Models/GH10334/GH10334ProductTypeId.php | 0 .../Tests/Models/GH10336/GH10336Entity.php | 0 .../Tests/Models/GH10336/GH10336Relation.php | 0 .../Tests/Models/GH7141/GH7141Article.php | 0 .../Tests/Models/GH7316/GH7316Article.php | 0 .../Tests/Models/GH7717/GH7717Child.php | 0 .../Tests/Models/GH7717/GH7717Parent.php | 0 .../Tests/Models/GH8565/GH8565Employee.php | 0 .../Tests/Models/GH8565/GH8565Manager.php | 0 .../Tests/Models/GH8565/GH8565Person.php | 0 .../Tests/Models/Generic/BooleanModel.php | 0 .../Tests/Models/Generic/DateTimeModel.php | 0 .../Tests/Models/Generic/DecimalModel.php | 0 .../Models/Generic/NonAlphaColumnsEntity.php | 0 .../Models/Generic/SerializationModel.php | 0 .../Tests/Models/GeoNames/Admin1.php | 0 .../Models/GeoNames/Admin1AlternateName.php | 0 .../Tests/Models/GeoNames/City.php | 0 .../Tests/Models/GeoNames/Country.php | 0 .../Models/Global/GlobalNamespaceModel.php | 0 .../EntityWithArrayDefaultArrayValueM2M.php | 0 .../Tests/Models/Hydration/SimpleEntity.php | 0 .../Models/Issue5989/Issue5989Employee.php | 0 .../Models/Issue5989/Issue5989Manager.php | 0 .../Models/Issue5989/Issue5989Person.php | 0 .../Tests/Models/Issue9300/Issue9300Child.php | 0 .../Models/Issue9300/Issue9300Parent.php | 0 .../AnotherChildClass.php | 0 .../JoinedInheritanceType/ChildClass.php | 0 .../JoinedInheritanceType/RootClass.php | 0 .../Tests/Models/Legacy/LegacyArticle.php | 0 .../Tests/Models/Legacy/LegacyCar.php | 0 .../Tests/Models/Legacy/LegacyUser.php | 0 .../Models/Legacy/LegacyUserReference.php | 0 .../Models/ManyToManyPersister/ChildClass.php | 0 .../ManyToManyPersister/OtherParentClass.php | 0 .../ManyToManyPersister/ParentClass.php | 0 .../CompositeToOneKeyState.php | 0 .../Models/MixedToOneIdentity/Country.php | 0 .../Tests/Models/Navigation/NavCountry.php | 0 .../Tests/Models/Navigation/NavPhotos.php | 0 .../Models/Navigation/NavPointOfInterest.php | 0 .../Tests/Models/Navigation/NavTour.php | 0 .../Tests/Models/Navigation/NavUser.php | 0 .../Models/NonPublicSchemaJoins/User.php | 0 .../Models/NullDefault/NullDefaultColumn.php | 0 .../OneToOneInverseSideLoad/InverseSide.php | 0 .../OneToOneInverseSideLoad/OwningSide.php | 0 .../OneToOneSingleTableInheritance/Cat.php | 0 .../LitterBox.php | 0 .../OneToOneSingleTableInheritance/Pet.php | 0 .../Tests/Models/Pagination/Company.php | 0 .../Tests/Models/Pagination/Department.php | 0 .../Tests/Models/Pagination/Logo.php | 0 .../Tests/Models/Pagination/User.php | 0 .../Tests/Models/Pagination/User1.php | 0 .../PersistentCollectionContent.php | 0 .../PersistentCollectionHolder.php | 0 .../PersistentObject/PersistentEntity.php | 0 .../Tests/Models/Project/Project.php | 0 .../Tests/Models/Project/ProjectId.php | 0 .../Models/Project/ProjectInvalidMapping.php | 0 .../Tests/Models/Project/ProjectName.php | 0 .../Tests/Models/Quote/Address.php | 0 .../Tests/Models/Quote/City.php | 0 .../Tests/Models/Quote/FullAddress.php | 0 .../Tests/Models/Quote/Group.php | 0 .../Tests/Models/Quote/NumericEntity.php | 0 .../Tests/Models/Quote/Phone.php | 0 .../Tests/Models/Quote/User.php | 0 .../Models/ReadonlyProperties/Author.php | 0 .../Tests/Models/ReadonlyProperties/Book.php | 0 .../Models/ReadonlyProperties/SimpleBook.php | 0 .../Models/Reflection/AbstractEmbeddable.php | 0 .../Reflection/ArrayObjectExtendingClass.php | 0 .../Reflection/ClassWithMixedProperties.php | 0 .../Models/Reflection/ConcreteEmbeddable.php | 0 .../Tests/Models/Reflection/ParentClass.php | 0 .../Tests/Models/Routing/RoutingLeg.php | 0 .../Tests/Models/Routing/RoutingLocation.php | 0 .../Tests/Models/Routing/RoutingRoute.php | 0 .../Models/Routing/RoutingRouteBooking.php | 0 .../Tests/Models/StockExchange/Bond.php | 0 .../Tests/Models/StockExchange/Market.php | 0 .../Tests/Models/StockExchange/Stock.php | 0 .../{Doctrine => }/Tests/Models/Taxi/Car.php | 0 .../Tests/Models/Taxi/Driver.php | 0 .../Tests/Models/Taxi/PaidRide.php | 0 .../{Doctrine => }/Tests/Models/Taxi/Ride.php | 0 .../Tests/Models/Tweet/Tweet.php | 0 .../Tests/Models/Tweet/User.php | 0 .../Tests/Models/Tweet/UserList.php | 0 .../Tests/Models/TypedProperties/Contact.php | 0 .../Models/TypedProperties/UserTyped.php | 0 .../UserTypedWithCustomTypedField.php | 0 .../Tests/Models/Upsertable/Insertable.php | 0 .../Tests/Models/Upsertable/Updatable.php | 0 .../ValueConversionType/AuxiliaryEntity.php | 0 .../InversedManyToManyCompositeIdEntity.php | 0 ...dManyToManyCompositeIdForeignKeyEntity.php | 0 .../InversedManyToManyEntity.php | 0 .../InversedManyToManyExtraLazyEntity.php | 0 .../InversedOneToManyCompositeIdEntity.php | 0 ...edOneToManyCompositeIdForeignKeyEntity.php | 0 .../InversedOneToManyEntity.php | 0 .../InversedOneToManyExtraLazyEntity.php | 0 .../InversedOneToOneCompositeIdEntity.php | 0 ...sedOneToOneCompositeIdForeignKeyEntity.php | 0 .../InversedOneToOneEntity.php | 0 .../OwningManyToManyCompositeIdEntity.php | 0 ...gManyToManyCompositeIdForeignKeyEntity.php | 0 .../OwningManyToManyEntity.php | 0 .../OwningManyToManyExtraLazyEntity.php | 0 .../OwningManyToOneCompositeIdEntity.php | 0 ...ngManyToOneCompositeIdForeignKeyEntity.php | 0 .../OwningManyToOneEntity.php | 0 .../OwningManyToOneExtraLazyEntity.php | 0 .../OwningManyToOneIdForeignKeyEntity.php | 0 .../OwningOneToOneCompositeIdEntity.php | 0 ...ingOneToOneCompositeIdForeignKeyEntity.php | 0 .../OwningOneToOneEntity.php | 0 .../Tests/Models/ValueObjects/Name.php | 0 .../Tests/Models/ValueObjects/Person.php | 0 .../Models/VersionedManyToOne/Article.php | 0 .../Models/VersionedManyToOne/Category.php | 0 .../VersionedOneToOne/FirstRelatedEntity.php | 0 .../VersionedOneToOne/SecondRelatedEntity.php | 0 .../Tests/ORM/AbstractQueryTest.php | 0 .../Tests/ORM/Cache/CacheConfigTest.php | 0 .../Tests/ORM/Cache/CacheKeyTest.php | 0 .../Tests/ORM/Cache/CacheLoggerChainTest.php | 0 .../ORM/Cache/DefaultCacheFactoryTest.php | 0 .../Tests/ORM/Cache/DefaultCacheTest.php | 0 .../Cache/DefaultCollectionHydratorTest.php | 0 .../ORM/Cache/DefaultEntityHydratorTest.php | 0 .../Tests/ORM/Cache/DefaultQueryCacheTest.php | 0 .../Tests/ORM/Cache/DefaultRegionTest.php | 0 .../Tests/ORM/Cache/FileLockRegionTest.php | 0 .../CollectionPersisterTestCase.php | 0 ...ReadWriteCachedCollectionPersisterTest.php | 0 .../ReadOnlyCachedCollectionPersisterTest.php | 0 ...ReadWriteCachedCollectionPersisterTest.php | 0 .../Entity/EntityPersisterTestCase.php | 0 ...rictReadWriteCachedEntityPersisterTest.php | 0 .../ReadOnlyCachedEntityPersisterTest.php | 0 .../ReadWriteCachedEntityPersisterTest.php | 0 .../Tests/ORM/Cache/RegionTestCase.php | 0 .../ORM/Cache/StatisticsCacheLoggerTest.php | 0 .../Tests/ORM/ConfigurationTest.php | 0 .../Tests/ORM/Entity/ConstructorTest.php | 0 .../Tests/ORM/EntityManagerTest.php | 0 .../Tests/ORM/EntityNotFoundExceptionTest.php | 0 .../OnClassMetadataNotFoundEventArgsTest.php | 0 .../AbstractManyToManyAssociationTestCase.php | 0 .../Functional/AdvancedAssociationTest.php | 0 .../ORM/Functional/AdvancedDqlQueryTest.php | 0 .../ORM/Functional/BasicFunctionalTest.php | 0 .../ORM/Functional/CascadeRemoveOrderTest.php | 0 .../ClassTableInheritanceSecondTest.php | 0 .../Functional/ClassTableInheritanceTest.php | 0 .../Tests/ORM/Functional/ClearEventTest.php | 0 .../Functional/CompositePrimaryKeyTest.php | 0 ...ompositePrimaryKeyWithAssociationsTest.php | 0 .../ORM/Functional/CustomFunctionsTest.php | 0 .../ORM/Functional/CustomIdObjectTypeTest.php | 0 .../ORM/Functional/DatabaseDriverTest.php | 0 .../ORM/Functional/DatabaseDriverTestCase.php | 0 .../ORM/Functional/DefaultValuesTest.php | 0 .../ORM/Functional/DetachedEntityTest.php | 0 .../Functional/EagerFetchCollectionTest.php | 0 .../ORM/Functional/EntityListenersTest.php | 0 .../EntityRepositoryCriteriaTest.php | 0 .../ORM/Functional/EntityRepositoryTest.php | 0 .../Tests/ORM/Functional/EnumTest.php | 0 .../Functional/ExtraLazyCollectionTest.php | 0 .../Tests/ORM/Functional/FlushEventTest.php | 0 .../Tests/ORM/Functional/GH7877Test.php | 0 .../ORM/Functional/HydrationCacheTest.php | 0 .../Tests/ORM/Functional/IdentityMapTest.php | 0 .../ORM/Functional/IndexByAssociationTest.php | 0 .../Functional/InsertableUpdatableTest.php | 0 .../JoinedTableCompositeKeyTest.php | 0 .../ORM/Functional/LifecycleCallbackTest.php | 0 .../Functional/Locking/GearmanLockTest.php | 0 .../Functional/Locking/LockAgentWorker.php | 0 .../Tests/ORM/Functional/Locking/LockTest.php | 0 .../ORM/Functional/Locking/OptimisticTest.php | 0 .../ManyToManyBasicAssociationTest.php | 0 ...ManyToManyBidirectionalAssociationTest.php | 0 .../ORM/Functional/ManyToManyEventTest.php | 0 ...nyToManySelfReferentialAssociationTest.php | 0 ...anyToManyUnidirectionalAssociationTest.php | 0 .../ORM/Functional/MappedSuperclassTest.php | 0 .../Tests/ORM/Functional/NativeQueryTest.php | 0 .../Tests/ORM/Functional/NewOperatorTest.php | 0 .../OneToManyBidirectionalAssociationTest.php | 0 .../Functional/OneToManyOrphanRemovalTest.php | 0 ...neToManySelfReferentialAssociationTest.php | 0 ...OneToManyUnidirectionalAssociationTest.php | 0 .../OneToOneBidirectionalAssociationTest.php | 0 .../Functional/OneToOneEagerLoadingTest.php | 0 ...eToOneInverseSideLoadAfterDqlQueryTest.php | 0 .../Functional/OneToOneOrphanRemovalTest.php | 0 ...OneToOneSelfReferentialAssociationTest.php | 0 .../OneToOneSingleTableInheritanceTest.php | 0 .../OneToOneUnidirectionalAssociationTest.php | 0 .../ORM/Functional/OrderedCollectionTest.php | 0 ...edJoinedTableInheritanceCollectionTest.php | 0 .../Tests/ORM/Functional/PaginationTest.php | 0 .../ParserResultSerializationTest.php | 0 .../ParserResults/single_select_2_17_0.txt | Bin .../PersistentCollectionCriteriaTest.php | 0 .../Functional/PersistentCollectionTest.php | 0 .../ORM/Functional/PostFlushEventTest.php | 0 .../ORM/Functional/PostLoadEventTest.php | 0 .../Functional/ProxiesLikeEntitiesTest.php | 0 .../QueryBuilderParenthesisTest.php | 0 .../Tests/ORM/Functional/QueryCacheTest.php | 0 .../ORM/Functional/QueryDqlFunctionTest.php | 0 .../ORM/Functional/QueryIterableTest.php | 0 .../Tests/ORM/Functional/QueryTest.php | 0 .../Tests/ORM/Functional/ReadOnlyTest.php | 0 .../ORM/Functional/ReadonlyPropertiesTest.php | 0 .../ORM/Functional/ReferenceProxyTest.php | 0 .../Tests/ORM/Functional/ResultCacheTest.php | 0 .../Tests/ORM/Functional/SQLFilterTest.php | 0 .../SchemaTool/CompanySchemaTest.php | 0 .../ORM/Functional/SchemaTool/DBAL483Test.php | 0 .../ORM/Functional/SchemaTool/DDC214Test.php | 0 .../SchemaTool/MySqlSchemaToolTest.php | 0 .../SchemaTool/PostgreSqlSchemaToolTest.php | 0 .../ORM/Functional/SchemaValidatorTest.php | 0 ...econdLevelCacheCompositePrimaryKeyTest.php | 0 ...ompositePrimaryKeyWithAssociationsTest.php | 0 .../SecondLevelCacheConcurrentTest.php | 0 .../SecondLevelCacheCriteriaTest.php | 0 ...econdLevelCacheExtraLazyCollectionTest.php | 0 .../SecondLevelCacheFunctionalTestCase.php | 0 ...condLevelCacheJoinTableInheritanceTest.php | 0 .../SecondLevelCacheManyToManyTest.php | 0 .../SecondLevelCacheManyToOneTest.php | 0 .../SecondLevelCacheOneToManyTest.php | 0 .../SecondLevelCacheOneToOneTest.php | 0 .../SecondLevelCacheQueryCacheTest.php | 0 .../SecondLevelCacheRepositoryTest.php | 0 ...ndLevelCacheSingleTableInheritanceTest.php | 0 .../ORM/Functional/SecondLevelCacheTest.php | 0 .../ORM/Functional/SequenceGeneratorTest.php | 0 .../SingleTableCompositeKeyTest.php | 0 .../Functional/SingleTableInheritanceTest.php | 0 .../StandardEntityPersisterTest.php | 0 .../ORM/Functional/Ticket/DDC1040Test.php | 0 .../ORM/Functional/Ticket/DDC1041Test.php | 0 .../ORM/Functional/Ticket/DDC1043Test.php | 0 .../ORM/Functional/Ticket/DDC1080Test.php | 0 .../ORM/Functional/Ticket/DDC1113Test.php | 0 .../ORM/Functional/Ticket/DDC1129Test.php | 0 .../ORM/Functional/Ticket/DDC1163Test.php | 0 .../ORM/Functional/Ticket/DDC117Test.php | 0 .../ORM/Functional/Ticket/DDC1181Test.php | 0 .../ORM/Functional/Ticket/DDC1193Test.php | 0 .../ORM/Functional/Ticket/DDC1209Test.php | 0 .../ORM/Functional/Ticket/DDC1225Test.php | 0 .../ORM/Functional/Ticket/DDC1228Test.php | 0 .../ORM/Functional/Ticket/DDC1238Test.php | 0 .../ORM/Functional/Ticket/DDC1250Test.php | 0 .../ORM/Functional/Ticket/DDC1300Test.php | 0 .../ORM/Functional/Ticket/DDC1301Test.php | 0 .../ORM/Functional/Ticket/DDC1306Test.php | 0 .../ORM/Functional/Ticket/DDC1335Test.php | 0 .../ORM/Functional/Ticket/DDC1400Test.php | 0 .../ORM/Functional/Ticket/DDC142Test.php | 0 .../ORM/Functional/Ticket/DDC1430Test.php | 0 .../ORM/Functional/Ticket/DDC1436Test.php | 0 .../ORM/Functional/Ticket/DDC144Test.php | 0 .../ORM/Functional/Ticket/DDC1452Test.php | 0 .../ORM/Functional/Ticket/DDC1454Test.php | 0 .../ORM/Functional/Ticket/DDC1458Test.php | 0 .../ORM/Functional/Ticket/DDC1461Test.php | 0 .../ORM/Functional/Ticket/DDC1514Test.php | 0 .../ORM/Functional/Ticket/DDC1515Test.php | 0 .../ORM/Functional/Ticket/DDC1526Test.php | 0 .../ORM/Functional/Ticket/DDC1545Test.php | 0 .../ORM/Functional/Ticket/DDC1548Test.php | 0 .../ORM/Functional/Ticket/DDC1595Test.php | 0 .../ORM/Functional/Ticket/DDC163Test.php | 0 .../ORM/Functional/Ticket/DDC1643Test.php | 0 .../ORM/Functional/Ticket/DDC1654Test.php | 0 .../ORM/Functional/Ticket/DDC1655Test.php | 0 .../ORM/Functional/Ticket/DDC1666Test.php | 0 .../ORM/Functional/Ticket/DDC1685Test.php | 0 .../ORM/Functional/Ticket/DDC168Test.php | 0 .../ORM/Functional/Ticket/DDC1695Test.php | 0 .../ORM/Functional/Ticket/DDC1707Test.php | 0 .../ORM/Functional/Ticket/DDC1719Test.php | 0 .../ORM/Functional/Ticket/DDC1757Test.php | 0 .../ORM/Functional/Ticket/DDC1778Test.php | 0 .../ORM/Functional/Ticket/DDC1787Test.php | 0 .../ORM/Functional/Ticket/DDC1843Test.php | 0 .../ORM/Functional/Ticket/DDC1884Test.php | 0 .../ORM/Functional/Ticket/DDC1885Test.php | 0 .../ORM/Functional/Ticket/DDC1918Test.php | 0 .../ORM/Functional/Ticket/DDC1925Test.php | 0 .../ORM/Functional/Ticket/DDC192Test.php | 0 .../ORM/Functional/Ticket/DDC1995Test.php | 0 .../ORM/Functional/Ticket/DDC1998Test.php | 0 .../ORM/Functional/Ticket/DDC199Test.php | 0 .../ORM/Functional/Ticket/DDC2012Test.php | 0 .../ORM/Functional/Ticket/DDC2074Test.php | 0 .../ORM/Functional/Ticket/DDC2084Test.php | 0 .../ORM/Functional/Ticket/DDC2090Test.php | 0 .../ORM/Functional/Ticket/DDC2106Test.php | 0 .../ORM/Functional/Ticket/DDC211Test.php | 0 .../ORM/Functional/Ticket/DDC2138Test.php | 0 .../ORM/Functional/Ticket/DDC2175Test.php | 0 .../ORM/Functional/Ticket/DDC2182Test.php | 0 .../ORM/Functional/Ticket/DDC2214Test.php | 0 .../ORM/Functional/Ticket/DDC2224Test.php | 0 .../ORM/Functional/Ticket/DDC2252Test.php | 0 .../ORM/Functional/Ticket/DDC2306Test.php | 0 .../ORM/Functional/Ticket/DDC2346Test.php | 0 .../ORM/Functional/Ticket/DDC2350Test.php | 0 .../ORM/Functional/Ticket/DDC2359Test.php | 0 .../ORM/Functional/Ticket/DDC237Test.php | 0 .../ORM/Functional/Ticket/DDC2387Test.php | 0 .../ORM/Functional/Ticket/DDC2415Test.php | 0 .../ORM/Functional/Ticket/DDC2494Test.php | 0 .../ORM/Functional/Ticket/DDC2575Test.php | 0 .../ORM/Functional/Ticket/DDC2579Test.php | 0 .../ORM/Functional/Ticket/DDC258Test.php | 0 .../ORM/Functional/Ticket/DDC2602Test.php | 0 .../ORM/Functional/Ticket/DDC2655Test.php | 0 .../ORM/Functional/Ticket/DDC2660Test.php | 0 .../ORM/Functional/Ticket/DDC2692Test.php | 0 .../ORM/Functional/Ticket/DDC2759Test.php | 0 .../ORM/Functional/Ticket/DDC2775Test.php | 0 .../ORM/Functional/Ticket/DDC2780Test.php | 0 .../ORM/Functional/Ticket/DDC2790Test.php | 0 .../ORM/Functional/Ticket/DDC279Test.php | 0 .../ORM/Functional/Ticket/DDC2825Test.php | 0 .../ORM/Functional/Ticket/DDC2862Test.php | 0 .../ORM/Functional/Ticket/DDC2895Test.php | 0 .../ORM/Functional/Ticket/DDC2931Test.php | 0 .../ORM/Functional/Ticket/DDC2943Test.php | 0 .../ORM/Functional/Ticket/DDC2984Test.php | 0 .../ORM/Functional/Ticket/DDC2996Test.php | 0 .../ORM/Functional/Ticket/DDC3033Test.php | 0 .../ORM/Functional/Ticket/DDC3042Test.php | 0 .../ORM/Functional/Ticket/DDC3068Test.php | 0 .../ORM/Functional/Ticket/DDC309Test.php | 0 .../ORM/Functional/Ticket/DDC3103Test.php | 0 .../ORM/Functional/Ticket/DDC3123Test.php | 0 .../ORM/Functional/Ticket/DDC3160Test.php | 0 .../ORM/Functional/Ticket/DDC3170Test.php | 0 .../ORM/Functional/Ticket/DDC3192Test.php | 0 .../ORM/Functional/Ticket/DDC3223Test.php | 0 .../ORM/Functional/Ticket/DDC3300Test.php | 0 .../ORM/Functional/Ticket/DDC3303Test.php | 0 .../ORM/Functional/Ticket/DDC331Test.php | 0 .../ORM/Functional/Ticket/DDC3330Test.php | 0 .../ORM/Functional/Ticket/DDC3346Test.php | 0 .../ORM/Functional/Ticket/DDC345Test.php | 0 .../ORM/Functional/Ticket/DDC353Test.php | 0 .../ORM/Functional/Ticket/DDC3582Test.php | 0 .../ORM/Functional/Ticket/DDC3597Test.php | 0 .../ORM/Functional/Ticket/DDC3634Test.php | 0 .../ORM/Functional/Ticket/DDC3644Test.php | 0 .../ORM/Functional/Ticket/DDC3719Test.php | 0 .../ORM/Functional/Ticket/DDC371Test.php | 0 .../ORM/Functional/Ticket/DDC3785Test.php | 0 .../ORM/Functional/Ticket/DDC381Test.php | 0 .../ORM/Functional/Ticket/DDC3967Test.php | 0 .../ORM/Functional/Ticket/DDC4003Test.php | 0 .../ORM/Functional/Ticket/DDC4024Test.php | 0 .../ORM/Functional/Ticket/DDC422Test.php | 0 .../ORM/Functional/Ticket/DDC425Test.php | 0 .../ORM/Functional/Ticket/DDC440Test.php | 0 .../ORM/Functional/Ticket/DDC444Test.php | 0 .../ORM/Functional/Ticket/DDC448Test.php | 0 .../ORM/Functional/Ticket/DDC493Test.php | 0 .../ORM/Functional/Ticket/DDC512Test.php | 0 .../ORM/Functional/Ticket/DDC513Test.php | 0 .../ORM/Functional/Ticket/DDC522Test.php | 0 .../ORM/Functional/Ticket/DDC531Test.php | 0 .../ORM/Functional/Ticket/DDC5684Test.php | 0 .../ORM/Functional/Ticket/DDC588Test.php | 0 .../ORM/Functional/Ticket/DDC599Test.php | 0 .../ORM/Functional/Ticket/DDC618Test.php | 0 .../ORM/Functional/Ticket/DDC6303Test.php | 0 .../ORM/Functional/Ticket/DDC633Test.php | 0 .../ORM/Functional/Ticket/DDC6460Test.php | 0 .../ORM/Functional/Ticket/DDC6558Test.php | 0 .../ORM/Functional/Ticket/DDC656Test.php | 0 .../ORM/Functional/Ticket/DDC657Test.php | 0 .../ORM/Functional/Ticket/DDC698Test.php | 0 .../Tests/ORM/Functional/Ticket/DDC69Test.php | 0 .../ORM/Functional/Ticket/DDC719Test.php | 0 .../ORM/Functional/Ticket/DDC735Test.php | 0 .../ORM/Functional/Ticket/DDC736Test.php | 0 .../ORM/Functional/Ticket/DDC748Test.php | 0 .../ORM/Functional/Ticket/DDC767Test.php | 0 .../ORM/Functional/Ticket/DDC7969Test.php | 0 .../ORM/Functional/Ticket/DDC809Test.php | 0 .../ORM/Functional/Ticket/DDC812Test.php | 0 .../ORM/Functional/Ticket/DDC832Test.php | 0 .../ORM/Functional/Ticket/DDC837Test.php | 0 .../ORM/Functional/Ticket/DDC849Test.php | 0 .../ORM/Functional/Ticket/DDC881Test.php | 0 .../ORM/Functional/Ticket/DDC933Test.php | 0 .../ORM/Functional/Ticket/DDC949Test.php | 0 .../ORM/Functional/Ticket/DDC960Test.php | 0 .../ORM/Functional/Ticket/DDC992Test.php | 0 .../Functional/Ticket/GH10049/GH10049Test.php | 0 .../GH10049/ReadOnlyPropertyInheritor.php | 0 .../Ticket/GH10049/ReadOnlyPropertyOwner.php | 0 .../ORM/Functional/Ticket/GH10132Test.php | 0 .../ORM/Functional/Ticket/GH10288Test.php | 0 .../ORM/Functional/Ticket/GH10334Test.php | 0 .../ORM/Functional/Ticket/GH10336Test.php | 0 .../ORM/Functional/Ticket/GH10348Test.php | 0 .../ORM/Functional/Ticket/GH10387Test.php | 0 .../ORM/Functional/Ticket/GH10450Test.php | 0 .../ORM/Functional/Ticket/GH10454Test.php | 0 .../ORM/Functional/Ticket/GH10462Test.php | 0 .../ORM/Functional/Ticket/GH10473Test.php | 0 .../ORM/Functional/Ticket/GH10531Test.php | 0 .../ORM/Functional/Ticket/GH10532Test.php | 0 .../ORM/Functional/Ticket/GH10566Test.php | 0 .../ORM/Functional/Ticket/GH10625Test.php | 0 .../Functional/Ticket/GH10661/GH10661Test.php | 0 .../Ticket/GH10661/InvalidChildEntity.php | 0 .../Ticket/GH10661/InvalidEntity.php | 0 .../ORM/Functional/Ticket/GH10747Test.php | 0 .../ORM/Functional/Ticket/GH10752Test.php | 0 .../ORM/Functional/Ticket/GH10808Test.php | 0 .../ORM/Functional/Ticket/GH10869Test.php | 0 .../ORM/Functional/Ticket/GH10880Test.php | 0 .../Ticket/GH11017/GH11017Entity.php | 0 .../Functional/Ticket/GH11017/GH11017Enum.php | 0 .../Functional/Ticket/GH11017/GH11017Test.php | 0 .../Functional/Ticket/GH11037/GH11037Test.php | 0 .../Ticket/GH11037/IntEntityStatus.php | 0 .../GH11037/InvalidEntityWithTypedEnum.php | 0 .../Ticket/GH11037/StringEntityStatus.php | 0 .../GH11037/ValidEntityWithTypedEnum.php | 0 .../ORM/Functional/Ticket/GH2947Test.php | 0 .../ORM/Functional/Ticket/GH5562Test.php | 0 .../ORM/Functional/Ticket/GH5742Test.php | 0 .../ORM/Functional/Ticket/GH5762Test.php | 0 .../ORM/Functional/Ticket/GH5804Test.php | 0 .../ORM/Functional/Ticket/GH5887Test.php | 0 .../ORM/Functional/Ticket/GH5988Test.php | 0 .../ORM/Functional/Ticket/GH5998Test.php | 0 .../ORM/Functional/Ticket/GH6029Test.php | 0 .../ORM/Functional/Ticket/GH6141Test.php | 0 .../ORM/Functional/Ticket/GH6217Test.php | 0 .../ORM/Functional/Ticket/GH6362Test.php | 0 .../ORM/Functional/Ticket/GH6394Test.php | 0 .../ORM/Functional/Ticket/GH6402Test.php | 0 .../ORM/Functional/Ticket/GH6464Test.php | 0 .../GH6499OneToManyRelationshipTest.php | 0 .../Ticket/GH6499OneToOneRelationshipTest.php | 0 .../ORM/Functional/Ticket/GH6499Test.php | 0 .../ORM/Functional/Ticket/GH6531Test.php | 0 .../ORM/Functional/Ticket/GH6682Test.php | 0 .../ORM/Functional/Ticket/GH6699Test.php | 0 .../ORM/Functional/Ticket/GH6740Test.php | 0 .../ORM/Functional/Ticket/GH6823Test.php | 0 .../ORM/Functional/Ticket/GH6937Test.php | 0 .../ORM/Functional/Ticket/GH7006Test.php | 0 .../ORM/Functional/Ticket/GH7012Test.php | 0 .../ORM/Functional/Ticket/GH7062Test.php | 0 .../ORM/Functional/Ticket/GH7067Test.php | 0 .../ORM/Functional/Ticket/GH7068Test.php | 0 .../ORM/Functional/Ticket/GH7079Test.php | 0 .../ORM/Functional/Ticket/GH7180Test.php | 0 .../ORM/Functional/Ticket/GH7259Test.php | 0 .../ORM/Functional/Ticket/GH7286Test.php | 0 .../ORM/Functional/Ticket/GH7366Test.php | 0 .../Ticket/GH7496WithToIterableTest.php | 0 .../ORM/Functional/Ticket/GH7505Test.php | 0 .../ORM/Functional/Ticket/GH7512Test.php | 0 .../ORM/Functional/Ticket/GH7629Test.php | 0 .../ORM/Functional/Ticket/GH7661Test.php | 0 .../ORM/Functional/Ticket/GH7684Test.php | 0 .../ORM/Functional/Ticket/GH7717Test.php | 0 .../ORM/Functional/Ticket/GH7735Test.php | 0 .../ORM/Functional/Ticket/GH7737Test.php | 0 .../ORM/Functional/Ticket/GH7761Test.php | 0 .../ORM/Functional/Ticket/GH7767Test.php | 0 .../ORM/Functional/Ticket/GH7820Test.php | 0 .../ORM/Functional/Ticket/GH7829Test.php | 0 .../ORM/Functional/Ticket/GH7836Test.php | 0 .../ORM/Functional/Ticket/GH7864Test.php | 0 .../ORM/Functional/Ticket/GH7869Test.php | 0 .../ORM/Functional/Ticket/GH7875Test.php | 0 .../ORM/Functional/Ticket/GH7941Test.php | 0 .../ORM/Functional/Ticket/GH8055Test.php | 0 .../ORM/Functional/Ticket/GH8061Test.php | 0 .../ORM/Functional/Ticket/GH8127Test.php | 0 .../ORM/Functional/Ticket/GH8217Test.php | 0 .../ORM/Functional/Ticket/GH8415Test.php | 0 .../Ticket/GH8415ToManyAssociationTest.php | 0 .../ORM/Functional/Ticket/GH8443Test.php | 0 .../ORM/Functional/Ticket/GH8499Test.php | 0 .../ORM/Functional/Ticket/GH8663Test.php | 0 .../ORM/Functional/Ticket/GH8914Test.php | 0 .../ORM/Functional/Ticket/GH9027Test.php | 0 .../ORM/Functional/Ticket/GH9109Test.php | 0 .../ORM/Functional/Ticket/GH9192Test.php | 0 .../ORM/Functional/Ticket/GH9230Test.php | 0 .../ORM/Functional/Ticket/GH9335Test.php | 0 .../Functional/Ticket/GH9467/GH9467Test.php | 0 .../Ticket/GH9467/JoinedInheritanceChild.php | 0 .../JoinedInheritanceNonInsertableColumn.php | 0 .../JoinedInheritanceNonUpdatableColumn.php | 0 .../JoinedInheritanceNonWritableColumn.php | 0 .../Ticket/GH9467/JoinedInheritanceRoot.php | 0 .../JoinedInheritanceWritableColumn.php | 0 .../ORM/Functional/Ticket/GH9516Test.php | 0 .../ORM/Functional/Ticket/GH9579Test.php | 0 .../ORM/Functional/Ticket/GH9807Test.php | 0 .../ORM/Functional/Ticket/Issue5989Test.php | 0 .../ORM/Functional/Ticket/Issue9300Test.php | 0 .../ORM/Functional/Ticket/Ticket2481Test.php | 0 .../Ticket4646InstanceOfAbstractTest.php | 0 .../Ticket4646InstanceOfMultiLevelTest.php | 0 .../Ticket4646InstanceOfParametricTest.php | 0 .../Ticket/Ticket4646InstanceOfTest.php | 0 ...46InstanceOfWithMultipleParametersTest.php | 0 .../Tests/ORM/Functional/TypeTest.php | 0 .../Tests/ORM/Functional/TypeValueSqlTest.php | 0 .../Functional/UnitOfWorkLifecycleTest.php | 0 .../ManyToManyCompositeIdForeignKeyTest.php | 0 .../ManyToManyCompositeIdTest.php | 0 .../ManyToManyExtraLazyTest.php | 0 .../ValueConversionType/ManyToManyTest.php | 0 .../OneToManyCompositeIdForeignKeyTest.php | 0 .../OneToManyCompositeIdTest.php | 0 .../OneToManyExtraLazyTest.php | 0 .../ValueConversionType/OneToManyTest.php | 0 .../OneToOneCompositeIdForeignKeyTest.php | 0 .../OneToOneCompositeIdTest.php | 0 .../ValueConversionType/OneToOneTest.php | 0 .../Tests/ORM/Functional/ValueObjectsTest.php | 0 .../ORM/Functional/VersionedOneToOneTest.php | 0 .../ORM/Hydration/AbstractHydratorTest.php | 0 .../Tests/ORM/Hydration/ArrayHydratorTest.php | 0 .../ORM/Hydration/CustomHydratorTest.php | 0 .../Tests/ORM/Hydration/HydrationTestCase.php | 0 .../ORM/Hydration/ObjectHydratorTest.php | 0 .../ORM/Hydration/ResultSetMappingTest.php | 0 .../Hydration/ScalarColumnHydratorTest.php | 0 .../ORM/Hydration/ScalarHydratorTest.php | 0 .../Hydration/SimpleObjectHydratorTest.php | 0 .../Hydration/SingleScalarHydratorTest.php | 0 .../Tests/ORM/Id/AssignedGeneratorTest.php | 0 .../Tests/ORM/Id/SequenceGeneratorTest.php | 0 .../Internal/HydrationCompleteHandlerTest.php | 0 .../ORM/Internal/TopologicalSortTest.php | 0 .../Tests/ORM/LazyCriteriaCollectionTest.php | 0 .../ORM/Mapping/AnsiQuoteStrategyTest.php | 0 .../ORM/Mapping/AssociationMappingTest.php | 0 .../Tests/ORM/Mapping/AttributeDriverTest.php | 0 .../Tests/ORM/Mapping/AttributeReaderTest.php | 0 .../Mapping/BasicInheritanceMappingTest.php | 0 .../ORM/Mapping/ClassMetadataBuilderTest.php | 0 .../ORM/Mapping/ClassMetadataFactoryTest.php | 0 .../Mapping/ClassMetadataLoadEventTest.php | 0 .../Tests/ORM/Mapping/ClassMetadataTest.php | 0 .../ORM/Mapping/DefaultQuoteStrategyTest.php | 0 .../DiscriminatorColumnMappingTest.php | 0 .../ORM/Mapping/EmbeddedClassMappingTest.php | 0 .../Mapping/EntityListenerResolverTest.php | 0 .../Tests/ORM/Mapping/FieldBuilderTest.php | 0 .../Tests/ORM/Mapping/FieldMappingTest.php | 0 .../AttributeEntityWithNestedJoinColumns.php | 0 .../ORM/Mapping/InverseSideMappingTest.php | 0 .../ORM/Mapping/JoinColumnMappingTest.php | 0 .../ORM/Mapping/JoinTableMappingTest.php | 0 .../ManyToManyOwningSideMappingTest.php | 0 .../ManyToOneAssociationMappingTest.php | 0 .../ORM/Mapping/MappingDriverTestCase.php | 0 .../JoinColumnClassNamingStrategy.php | 0 .../Tests/ORM/Mapping/NamingStrategyTest.php | 0 .../Mapping/OneToOneOwningSideMappingTest.php | 0 .../ORM/Mapping/OwningSideMappingTest.php | 0 .../Tests/ORM/Mapping/QuoteStrategyTest.php | 0 .../ReflectionEmbeddedPropertyTest.php | 0 .../ReflectionReadonlyPropertyTest.php | 0 .../Mapping/StaticPHPMappingDriverTest.php | 0 .../ORM/Mapping/Symfony/DriverTestCase.php | 0 .../ORM/Mapping/Symfony/XmlDriverTest.php | 0 .../Mapping/ToManyAssociationMappingTest.php | 0 .../CustomIntAsStringTypedFieldMapper.php | 0 .../ORM/Mapping/TypedFieldMapperTest.php | 0 .../ORM/Mapping/XmlMappingDriverTest.php | 0 .../php/Doctrine.Tests.Models.Enums.Card.php | 0 ...operties.UserTypedWithCustomTypedField.php | 0 ...ine.Tests.Models.Upsertable.Insertable.php | 0 ...rine.Tests.Models.Upsertable.Updatable.php | 0 ...ests.ORM.Mapping.GH10288EnumTypePerson.php | 0 .../Tests/ORM/Mapping/xml/CatNoId.dcm.xml | 0 .../Tests/ORM/Mapping/xml/DDC2429Book.orm.xml | 0 .../ORM/Mapping/xml/DDC2429Novel.orm.xml | 0 ...ctrine.Tests.Models.CMS.CmsAddress.dcm.xml | 0 .../Doctrine.Tests.Models.CMS.CmsUser.dcm.xml | 0 .../Doctrine.Tests.Models.Cache.City.dcm.xml | 0 ...sts.Models.Company.CompanyContract.dcm.xml | 0 ....Models.Company.CompanyFixContract.dcm.xml | 0 ...Models.Company.CompanyFlexContract.dcm.xml | 0 ...s.Company.CompanyFlexUltraContract.dcm.xml | 0 ...Tests.Models.Company.CompanyPerson.dcm.xml | 0 ...ts.Models.DDC117.DDC117Translation.dcm.xml | 0 ....DDC1476EntityWithDefaultFieldType.dcm.xml | 0 ...els.DDC2825.ExplicitSchemaAndTable.dcm.xml | 0 ....DDC2825.SchemaAndTableInTableName.dcm.xml | 0 ...ests.Models.DDC3293.DDC3293Address.dcm.xml | 0 ...e.Tests.Models.DDC3293.DDC3293User.dcm.xml | 0 ...Models.DDC3293.DDC3293UserPrefixed.dcm.xml | 0 ....Tests.Models.DDC3579.DDC3579Admin.dcm.xml | 0 ...e.Tests.Models.DDC3579.DDC3579User.dcm.xml | 0 ...Models.DDC5934.DDC5934BaseContract.dcm.xml | 0 ...sts.Models.DDC5934.DDC5934Contract.dcm.xml | 0 ....Models.DDC869.DDC869ChequePayment.dcm.xml | 0 ...els.DDC869.DDC869CreditCardPayment.dcm.xml | 0 ....Tests.Models.DDC869.DDC869Payment.dcm.xml | 0 ...ne.Tests.Models.DDC889.DDC889Class.dcm.xml | 0 ...e.Tests.Models.DDC889.DDC889Entity.dcm.xml | 0 ...sts.Models.DDC889.DDC889SuperClass.dcm.xml | 0 ...ne.Tests.Models.DDC964.DDC964Admin.dcm.xml | 0 ...ne.Tests.Models.DDC964.DDC964Guest.dcm.xml | 0 ...ine.Tests.Models.DDC964.DDC964User.dcm.xml | 0 .../Doctrine.Tests.Models.Enums.Card.dcm.xml | 0 ....Tests.Models.GH7141.GH7141Article.dcm.xml | 0 ....Tests.Models.GH7316.GH7316Article.dcm.xml | 0 ....Tests.Models.Generic.BooleanModel.dcm.xml | 0 ...trine.Tests.Models.Project.Project.dcm.xml | 0 ...dels.Project.ProjectInvalidMapping.dcm.xml | 0 ...s.Models.TypedProperties.UserTyped.dcm.xml | 0 ...ties.UserTypedWithCustomTypedField.dcm.xml | 0 ...Tests.Models.Upsertable.Insertable.dcm.xml | 0 ....Tests.Models.Upsertable.Updatable.dcm.xml | 0 ...ine.Tests.Models.ValueObjects.Name.dcm.xml | 0 ...e.Tests.Models.ValueObjects.Person.dcm.xml | 0 .../Doctrine.Tests.ORM.Mapping.Animal.dcm.xml | 0 .../Doctrine.Tests.ORM.Mapping.CTI.dcm.xml | 0 ...Doctrine.Tests.ORM.Mapping.Comment.dcm.xml | 0 ...ne.Tests.ORM.Mapping.DDC1170Entity.dcm.xml | 0 ...ine.Tests.ORM.Mapping.DDC807Entity.dcm.xml | 0 ....ORM.Mapping.GH10288EnumTypePerson.dcm.xml | 0 ....Mapping.ReservedWordInTableColumn.dcm.xml | 0 ...completeDiscriminatorColumnMapping.dcm.xml | 0 ...EntityNoDiscriminatorColumnMapping.dcm.xml | 0 .../Doctrine.Tests.ORM.Mapping.User.dcm.xml | 0 ...RM.Mapping.UserIncorrectAttributes.dcm.xml | 0 ...sts.ORM.Mapping.UserIncorrectIndex.dcm.xml | 0 ...ping.UserIncorrectUniqueConstraint.dcm.xml | 0 ....ORM.Mapping.UserMissingAttributes.dcm.xml | 0 .../Doctrine.Tests.ORM.Mapping.XMLSLC.dcm.xml | 0 ...ties.UserTypedWithCustomTypedField.dcm.yml | 0 ....ORM.Mapping.GH10288EnumTypePerson.dcm.yml | 0 .../ORM/ORMInvalidArgumentExceptionTest.php | 0 .../{Doctrine => }/Tests/ORM/ORMSetupTest.php | 0 .../ORM/Performance/SecondLevelCacheTest.php | 0 .../Tests/ORM/PersistentCollectionTest.php | 0 ...tyPersisterCompositeTypeParametersTest.php | 0 ...sicEntityPersisterCompositeTypeSqlTest.php | 0 .../BasicEntityPersisterTypeValueSqlTest.php | 0 .../Exception/UnrecognizedFieldTest.php | 0 .../Persisters/ManyToManyPersisterTest.php | 0 .../Tests/ORM/Proxy/ProxyFactoryTest.php | 0 .../ORM/Query/CustomTreeWalkersJoinTest.php | 0 .../Tests/ORM/Query/CustomTreeWalkersTest.php | 0 .../ORM/Query/DeleteSqlGenerationTest.php | 0 .../Tests/ORM/Query/ExprTest.php | 0 .../Tests/ORM/Query/FilterCollectionTest.php | 0 .../ORM/Query/LanguageRecognitionTest.php | 0 .../Tests/ORM/Query/LexerTest.php | 0 .../ORM/Query/ParameterTypeInfererTest.php | 0 .../Tests/ORM/Query/ParserResultTest.php | 0 .../Tests/ORM/Query/ParserTest.php | 0 .../ORM/Query/QueryExpressionVisitorTest.php | 0 .../Tests/ORM/Query/QueryTest.php | 0 .../ORM/Query/SelectSqlGenerationTest.php | 0 .../ORM/Query/SqlExpressionVisitorTest.php | 0 .../Tests/ORM/Query/SqlWalkerTest.php | 0 .../ORM/Query/UpdateSqlGenerationTest.php | 0 .../Tests/ORM/QueryBuilderTest.php | 0 .../DefaultRepositoryFactoryTest.php | 0 .../AttachEntityListenersListenerTest.php | 0 .../ClearCacheCollectionRegionCommandTest.php | 0 .../ClearCacheEntityRegionCommandTest.php | 0 .../ClearCacheQueryRegionCommandTest.php | 0 .../Tools/Console/Command/InfoCommandTest.php | 0 .../Command/MappingDescribeCommandTest.php | 0 .../Console/Command/RunDqlCommandTest.php | 0 .../Command/SchemaTool/CommandTestCase.php | 0 .../Command/SchemaTool/CreateCommandTest.php | 0 .../Command/SchemaTool/DropCommandTest.php | 0 .../Command/SchemaTool/Models/Keyboard.php | 0 .../Command/ValidateSchemaCommandTest.php | 0 .../ORM/Tools/Console/ConsoleRunnerTest.php | 0 .../ORM/Tools/Console/MetadataFilterTest.php | 0 .../Tests/ORM/Tools/DebugTest.php | 0 .../Pagination/CountOutputWalkerTest.php | 0 .../ORM/Tools/Pagination/CountWalkerTest.php | 0 .../LimitSubqueryOutputWalkerTest.php | 0 .../Pagination/LimitSubqueryWalkerTest.php | 0 .../Tools/Pagination/PaginationTestCase.php | 0 .../ORM/Tools/Pagination/PaginatorTest.php | 0 .../Tools/Pagination/RootTypeWalkerTest.php | 0 .../Tools/Pagination/WhereInWalkerTest.php | 0 .../Tools/ResolveTargetEntityListenerTest.php | 0 .../Tests/ORM/Tools/SchemaToolTest.php | 0 .../Tests/ORM/Tools/SchemaValidatorTest.php | 0 .../Tests/ORM/Tools/TestAsset/ChildClass.php | 0 .../ChildWithSameAttributesClass.php | 0 .../Tests/ORM/Tools/TestAsset/ParentClass.php | 0 .../Tests/ORM/UnitOfWorkTest.php | 0 .../HierarchyDiscriminatorResolverTest.php | 0 .../Utility/IdentifierFlattenerEnumIdTest.php | 0 .../ORM/Utility/IdentifierFlattenerTest.php | 0 .../Tests/OrmFunctionalTestCase.php | 0 tests/{Doctrine => }/Tests/OrmTestCase.php | 0 .../Tests/Proxy/AutoloaderTest.php | 0 tests/{Doctrine => }/Tests/TestInit.php | 8 +- tests/{Doctrine => }/Tests/TestUtil.php | 0 1390 files changed, 357 insertions(+), 357 deletions(-) rename {lib/Doctrine/ORM => src}/AbstractQuery.php (100%) rename {lib/Doctrine/ORM => src}/Cache.php (100%) rename {lib/Doctrine/ORM => src}/Cache/AssociationCacheEntry.php (100%) rename {lib/Doctrine/ORM => src}/Cache/CacheConfiguration.php (100%) rename {lib/Doctrine/ORM => src}/Cache/CacheEntry.php (100%) rename {lib/Doctrine/ORM => src}/Cache/CacheException.php (100%) rename {lib/Doctrine/ORM => src}/Cache/CacheFactory.php (100%) rename {lib/Doctrine/ORM => src}/Cache/CacheKey.php (100%) rename {lib/Doctrine/ORM => src}/Cache/CollectionCacheEntry.php (100%) rename {lib/Doctrine/ORM => src}/Cache/CollectionCacheKey.php (100%) rename {lib/Doctrine/ORM => src}/Cache/CollectionHydrator.php (100%) rename {lib/Doctrine/ORM => src}/Cache/ConcurrentRegion.php (100%) rename {lib/Doctrine/ORM => src}/Cache/DefaultCache.php (100%) rename {lib/Doctrine/ORM => src}/Cache/DefaultCacheFactory.php (100%) rename {lib/Doctrine/ORM => src}/Cache/DefaultCollectionHydrator.php (100%) rename {lib/Doctrine/ORM => src}/Cache/DefaultEntityHydrator.php (100%) rename {lib/Doctrine/ORM => src}/Cache/DefaultQueryCache.php (100%) rename {lib/Doctrine/ORM => src}/Cache/EntityCacheEntry.php (100%) rename {lib/Doctrine/ORM => src}/Cache/EntityCacheKey.php (100%) rename {lib/Doctrine/ORM => src}/Cache/EntityHydrator.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Exception/CacheException.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Exception/CannotUpdateReadOnlyCollection.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Exception/CannotUpdateReadOnlyEntity.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Exception/FeatureNotImplemented.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Exception/NonCacheableEntity.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Exception/NonCacheableEntityAssociation.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Lock.php (100%) rename {lib/Doctrine/ORM => src}/Cache/LockException.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Logging/CacheLogger.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Logging/CacheLoggerChain.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Logging/StatisticsCacheLogger.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Persister/CachedPersister.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Persister/Collection/AbstractCollectionPersister.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Persister/Collection/CachedCollectionPersister.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Persister/Collection/NonStrictReadWriteCachedCollectionPersister.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Persister/Collection/ReadOnlyCachedCollectionPersister.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Persister/Collection/ReadWriteCachedCollectionPersister.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Persister/Entity/AbstractEntityPersister.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Persister/Entity/CachedEntityPersister.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Persister/Entity/NonStrictReadWriteCachedEntityPersister.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Persister/Entity/ReadOnlyCachedEntityPersister.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Persister/Entity/ReadWriteCachedEntityPersister.php (100%) rename {lib/Doctrine/ORM => src}/Cache/QueryCache.php (100%) rename {lib/Doctrine/ORM => src}/Cache/QueryCacheEntry.php (100%) rename {lib/Doctrine/ORM => src}/Cache/QueryCacheKey.php (100%) rename {lib/Doctrine/ORM => src}/Cache/QueryCacheValidator.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Region.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Region/DefaultRegion.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Region/FileLockRegion.php (100%) rename {lib/Doctrine/ORM => src}/Cache/Region/UpdateTimestampCache.php (100%) rename {lib/Doctrine/ORM => src}/Cache/RegionsConfiguration.php (100%) rename {lib/Doctrine/ORM => src}/Cache/TimestampCacheEntry.php (100%) rename {lib/Doctrine/ORM => src}/Cache/TimestampCacheKey.php (100%) rename {lib/Doctrine/ORM => src}/Cache/TimestampQueryCacheValidator.php (100%) rename {lib/Doctrine/ORM => src}/Cache/TimestampRegion.php (100%) rename {lib/Doctrine/ORM => src}/Configuration.php (100%) rename {lib/Doctrine/ORM => src}/Decorator/EntityManagerDecorator.php (100%) rename {lib/Doctrine/ORM => src}/EntityManager.php (100%) rename {lib/Doctrine/ORM => src}/EntityManagerInterface.php (100%) rename {lib/Doctrine/ORM => src}/EntityNotFoundException.php (100%) rename {lib/Doctrine/ORM => src}/EntityRepository.php (100%) rename {lib/Doctrine/ORM => src}/Event/ListenersInvoker.php (100%) rename {lib/Doctrine/ORM => src}/Event/LoadClassMetadataEventArgs.php (100%) rename {lib/Doctrine/ORM => src}/Event/OnClassMetadataNotFoundEventArgs.php (100%) rename {lib/Doctrine/ORM => src}/Event/OnClearEventArgs.php (100%) rename {lib/Doctrine/ORM => src}/Event/OnFlushEventArgs.php (100%) rename {lib/Doctrine/ORM => src}/Event/PostFlushEventArgs.php (100%) rename {lib/Doctrine/ORM => src}/Event/PostLoadEventArgs.php (100%) rename {lib/Doctrine/ORM => src}/Event/PostPersistEventArgs.php (100%) rename {lib/Doctrine/ORM => src}/Event/PostRemoveEventArgs.php (100%) rename {lib/Doctrine/ORM => src}/Event/PostUpdateEventArgs.php (100%) rename {lib/Doctrine/ORM => src}/Event/PreFlushEventArgs.php (100%) rename {lib/Doctrine/ORM => src}/Event/PrePersistEventArgs.php (100%) rename {lib/Doctrine/ORM => src}/Event/PreRemoveEventArgs.php (100%) rename {lib/Doctrine/ORM => src}/Event/PreUpdateEventArgs.php (100%) rename {lib/Doctrine/ORM => src}/Events.php (100%) rename {lib/Doctrine/ORM => src}/Exception/ConfigurationException.php (100%) rename {lib/Doctrine/ORM => src}/Exception/EntityIdentityCollisionException.php (100%) rename {lib/Doctrine/ORM => src}/Exception/EntityManagerClosed.php (100%) rename {lib/Doctrine/ORM => src}/Exception/EntityMissingAssignedId.php (100%) rename {lib/Doctrine/ORM => src}/Exception/InvalidEntityRepository.php (100%) rename {lib/Doctrine/ORM => src}/Exception/InvalidHydrationMode.php (100%) rename {lib/Doctrine/ORM => src}/Exception/ManagerException.php (100%) rename {lib/Doctrine/ORM => src}/Exception/MissingIdentifierField.php (100%) rename {lib/Doctrine/ORM => src}/Exception/MissingMappingDriverImplementation.php (100%) rename {lib/Doctrine/ORM => src}/Exception/MultipleSelectorsFoundException.php (100%) rename {lib/Doctrine/ORM => src}/Exception/NotSupported.php (100%) rename {lib/Doctrine/ORM => src}/Exception/ORMException.php (100%) rename {lib/Doctrine/ORM => src}/Exception/PersisterException.php (100%) rename {lib/Doctrine/ORM => src}/Exception/RepositoryException.php (100%) rename {lib/Doctrine/ORM => src}/Exception/SchemaToolException.php (100%) rename {lib/Doctrine/ORM => src}/Exception/UnexpectedAssociationValue.php (100%) rename {lib/Doctrine/ORM => src}/Exception/UnrecognizedIdentifierFields.php (100%) rename {lib/Doctrine/ORM => src}/Id/AbstractIdGenerator.php (100%) rename {lib/Doctrine/ORM => src}/Id/AssignedGenerator.php (100%) rename {lib/Doctrine/ORM => src}/Id/BigIntegerIdentityGenerator.php (100%) rename {lib/Doctrine/ORM => src}/Id/IdentityGenerator.php (100%) rename {lib/Doctrine/ORM => src}/Id/SequenceGenerator.php (100%) rename {lib/Doctrine/ORM => src}/Internal/Hydration/AbstractHydrator.php (100%) rename {lib/Doctrine/ORM => src}/Internal/Hydration/ArrayHydrator.php (100%) rename {lib/Doctrine/ORM => src}/Internal/Hydration/HydrationException.php (100%) rename {lib/Doctrine/ORM => src}/Internal/Hydration/ObjectHydrator.php (100%) rename {lib/Doctrine/ORM => src}/Internal/Hydration/ScalarColumnHydrator.php (100%) rename {lib/Doctrine/ORM => src}/Internal/Hydration/ScalarHydrator.php (100%) rename {lib/Doctrine/ORM => src}/Internal/Hydration/SimpleObjectHydrator.php (100%) rename {lib/Doctrine/ORM => src}/Internal/Hydration/SingleScalarHydrator.php (100%) rename {lib/Doctrine/ORM => src}/Internal/HydrationCompleteHandler.php (100%) rename {lib/Doctrine/ORM => src}/Internal/QueryType.php (100%) rename {lib/Doctrine/ORM => src}/Internal/SQLResultCasing.php (100%) rename {lib/Doctrine/ORM => src}/Internal/TopologicalSort.php (100%) rename {lib/Doctrine/ORM => src}/Internal/TopologicalSort/CycleDetectedException.php (100%) rename {lib/Doctrine/ORM => src}/LazyCriteriaCollection.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/AnsiQuoteStrategy.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ArrayAccessImplementation.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/AssociationMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/AssociationOverride.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/AssociationOverrides.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/AttributeOverride.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/AttributeOverrides.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Builder/AssociationBuilder.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Builder/ClassMetadataBuilder.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Builder/EmbeddedBuilder.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Builder/EntityListenerBuilder.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Builder/FieldBuilder.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Builder/ManyToManyAssociationBuilder.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Builder/OneToManyAssociationBuilder.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Cache.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ChainTypedFieldMapper.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ChangeTrackingPolicy.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ClassMetadata.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ClassMetadataFactory.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Column.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/CustomIdGenerator.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/DefaultEntityListenerResolver.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/DefaultNamingStrategy.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/DefaultQuoteStrategy.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/DefaultTypedFieldMapper.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/DiscriminatorColumn.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/DiscriminatorColumnMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/DiscriminatorMap.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Driver/AttributeDriver.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Driver/AttributeReader.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Driver/DatabaseDriver.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Driver/ReflectionBasedDriver.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Driver/RepeatableAttributeCollection.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Driver/SimplifiedXmlDriver.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Driver/XmlDriver.php (99%) rename {lib/Doctrine/ORM => src}/Mapping/Embeddable.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Embedded.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/EmbeddedClassMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Entity.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/EntityListenerResolver.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/EntityListeners.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Exception/InvalidCustomGenerator.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Exception/UnknownGeneratorType.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/FieldMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/GeneratedValue.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/HasLifecycleCallbacks.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Id.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Index.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/InheritanceType.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/InverseJoinColumn.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/InverseSideMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/JoinColumn.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/JoinColumnMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/JoinColumnProperties.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/JoinColumns.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/JoinTable.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/JoinTableMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ManyToMany.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ManyToManyAssociationMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ManyToManyInverseSideMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ManyToManyOwningSideMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ManyToOne.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ManyToOneAssociationMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/MappedSuperclass.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/MappingAttribute.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/MappingException.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/NamingStrategy.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/OneToMany.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/OneToManyAssociationMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/OneToOne.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/OneToOneAssociationMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/OneToOneInverseSideMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/OneToOneOwningSideMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/OrderBy.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/OwningSideMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/PostLoad.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/PostPersist.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/PostRemove.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/PostUpdate.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/PreFlush.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/PrePersist.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/PreRemove.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/PreUpdate.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/QuoteStrategy.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ReflectionEmbeddedProperty.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ReflectionEnumProperty.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ReflectionReadonlyProperty.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/SequenceGenerator.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Table.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ToManyAssociationMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ToManyAssociationMappingImplementation.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ToManyInverseSideMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ToManyOwningSideMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ToOneAssociationMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ToOneInverseSideMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/ToOneOwningSideMapping.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/TypedFieldMapper.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/UnderscoreNamingStrategy.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/UniqueConstraint.php (100%) rename {lib/Doctrine/ORM => src}/Mapping/Version.php (100%) rename {lib/Doctrine/ORM => src}/NativeQuery.php (100%) rename {lib/Doctrine/ORM => src}/NoResultException.php (100%) rename {lib/Doctrine/ORM => src}/NonUniqueResultException.php (100%) rename {lib/Doctrine/ORM => src}/ORMInvalidArgumentException.php (100%) rename {lib/Doctrine/ORM => src}/ORMSetup.php (100%) rename {lib/Doctrine/ORM => src}/OptimisticLockException.php (100%) rename {lib/Doctrine/ORM => src}/PersistentCollection.php (100%) rename {lib/Doctrine/ORM => src}/Persisters/Collection/AbstractCollectionPersister.php (100%) rename {lib/Doctrine/ORM => src}/Persisters/Collection/CollectionPersister.php (100%) rename {lib/Doctrine/ORM => src}/Persisters/Collection/ManyToManyPersister.php (100%) rename {lib/Doctrine/ORM => src}/Persisters/Collection/OneToManyPersister.php (100%) rename {lib/Doctrine/ORM => src}/Persisters/Entity/AbstractEntityInheritancePersister.php (100%) rename {lib/Doctrine/ORM => src}/Persisters/Entity/BasicEntityPersister.php (100%) rename {lib/Doctrine/ORM => src}/Persisters/Entity/CachedPersisterContext.php (100%) rename {lib/Doctrine/ORM => src}/Persisters/Entity/EntityPersister.php (100%) rename {lib/Doctrine/ORM => src}/Persisters/Entity/JoinedSubclassPersister.php (100%) rename {lib/Doctrine/ORM => src}/Persisters/Entity/SingleTablePersister.php (100%) rename {lib/Doctrine/ORM => src}/Persisters/Exception/CantUseInOperatorOnCompositeKeys.php (100%) rename {lib/Doctrine/ORM => src}/Persisters/Exception/InvalidOrientation.php (100%) rename {lib/Doctrine/ORM => src}/Persisters/Exception/UnrecognizedField.php (100%) rename {lib/Doctrine/ORM => src}/Persisters/MatchingAssociationFieldRequiresObject.php (100%) rename {lib/Doctrine/ORM => src}/Persisters/PersisterException.php (100%) rename {lib/Doctrine/ORM => src}/Persisters/SqlExpressionVisitor.php (100%) rename {lib/Doctrine/ORM => src}/Persisters/SqlValueVisitor.php (100%) rename {lib/Doctrine/ORM => src}/PessimisticLockException.php (100%) rename {lib/Doctrine/ORM => src}/Proxy/Autoloader.php (100%) rename {lib/Doctrine/ORM => src}/Proxy/DefaultProxyClassNameResolver.php (100%) rename {lib/Doctrine/ORM => src}/Proxy/InternalProxy.php (100%) rename {lib/Doctrine/ORM => src}/Proxy/NotAProxyClass.php (100%) rename {lib/Doctrine/ORM => src}/Proxy/ProxyFactory.php (100%) rename {lib/Doctrine/ORM => src}/Query.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/ASTException.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/AggregateExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/ArithmeticExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/ArithmeticFactor.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/ArithmeticTerm.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/BetweenExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/CoalesceExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/CollectionMemberExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/ComparisonExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/ConditionalExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/ConditionalFactor.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/ConditionalPrimary.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/ConditionalTerm.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/DeleteClause.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/DeleteStatement.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/EmptyCollectionComparisonExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/ExistsExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/FromClause.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/AbsFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/AvgFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/BitAndFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/BitOrFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/ConcatFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/CountFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/CurrentDateFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/CurrentTimeFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/CurrentTimestampFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/DateAddFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/DateDiffFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/DateSubFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/FunctionNode.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/IdentityFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/LengthFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/LocateFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/LowerFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/MaxFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/MinFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/ModFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/SizeFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/SqrtFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/SubstringFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/SumFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/TrimFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Functions/UpperFunction.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/GeneralCaseExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/GroupByClause.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/HavingClause.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/IdentificationVariableDeclaration.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/InListExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/InSubselectExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/IndexBy.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/InputParameter.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/InstanceOfExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Join.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/JoinAssociationDeclaration.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/JoinAssociationPathExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/JoinClassPathExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/JoinVariableDeclaration.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/LikeExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Literal.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/NewObjectExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Node.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/NullComparisonExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/NullIfExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/OrderByClause.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/OrderByItem.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/ParenthesisExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/PathExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Phase2OptimizableConditional.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/QuantifiedExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/RangeVariableDeclaration.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/SelectClause.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/SelectExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/SelectStatement.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/SimpleArithmeticExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/SimpleCaseExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/SimpleSelectClause.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/SimpleSelectExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/SimpleWhenClause.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/Subselect.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/SubselectFromClause.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/SubselectIdentificationVariableDeclaration.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/TypedExpression.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/UpdateClause.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/UpdateItem.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/UpdateStatement.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/WhenClause.php (100%) rename {lib/Doctrine/ORM => src}/Query/AST/WhereClause.php (100%) rename {lib/Doctrine/ORM => src}/Query/Exec/AbstractSqlExecutor.php (100%) rename {lib/Doctrine/ORM => src}/Query/Exec/MultiTableDeleteExecutor.php (100%) rename {lib/Doctrine/ORM => src}/Query/Exec/MultiTableUpdateExecutor.php (100%) rename {lib/Doctrine/ORM => src}/Query/Exec/SingleSelectExecutor.php (100%) rename {lib/Doctrine/ORM => src}/Query/Exec/SingleTableDeleteUpdateExecutor.php (100%) rename {lib/Doctrine/ORM => src}/Query/Expr.php (100%) rename {lib/Doctrine/ORM => src}/Query/Expr/Andx.php (100%) rename {lib/Doctrine/ORM => src}/Query/Expr/Base.php (100%) rename {lib/Doctrine/ORM => src}/Query/Expr/Comparison.php (100%) rename {lib/Doctrine/ORM => src}/Query/Expr/Composite.php (100%) rename {lib/Doctrine/ORM => src}/Query/Expr/From.php (100%) rename {lib/Doctrine/ORM => src}/Query/Expr/Func.php (100%) rename {lib/Doctrine/ORM => src}/Query/Expr/GroupBy.php (100%) rename {lib/Doctrine/ORM => src}/Query/Expr/Join.php (100%) rename {lib/Doctrine/ORM => src}/Query/Expr/Literal.php (100%) rename {lib/Doctrine/ORM => src}/Query/Expr/Math.php (100%) rename {lib/Doctrine/ORM => src}/Query/Expr/OrderBy.php (100%) rename {lib/Doctrine/ORM => src}/Query/Expr/Orx.php (100%) rename {lib/Doctrine/ORM => src}/Query/Expr/Select.php (100%) rename {lib/Doctrine/ORM => src}/Query/Filter/FilterException.php (100%) rename {lib/Doctrine/ORM => src}/Query/Filter/SQLFilter.php (100%) rename {lib/Doctrine/ORM => src}/Query/FilterCollection.php (100%) rename {lib/Doctrine/ORM => src}/Query/Lexer.php (100%) rename {lib/Doctrine/ORM => src}/Query/Parameter.php (100%) rename {lib/Doctrine/ORM => src}/Query/ParameterTypeInferer.php (100%) rename {lib/Doctrine/ORM => src}/Query/Parser.php (100%) rename {lib/Doctrine/ORM => src}/Query/ParserResult.php (100%) rename {lib/Doctrine/ORM => src}/Query/Printer.php (100%) rename {lib/Doctrine/ORM => src}/Query/QueryException.php (100%) rename {lib/Doctrine/ORM => src}/Query/QueryExpressionVisitor.php (100%) rename {lib/Doctrine/ORM => src}/Query/ResultSetMapping.php (100%) rename {lib/Doctrine/ORM => src}/Query/ResultSetMappingBuilder.php (100%) rename {lib/Doctrine/ORM => src}/Query/SqlWalker.php (100%) rename {lib/Doctrine/ORM => src}/Query/TokenType.php (100%) rename {lib/Doctrine/ORM => src}/Query/TreeWalker.php (100%) rename {lib/Doctrine/ORM => src}/Query/TreeWalkerAdapter.php (100%) rename {lib/Doctrine/ORM => src}/Query/TreeWalkerChain.php (100%) rename {lib/Doctrine/ORM => src}/QueryBuilder.php (100%) rename {lib/Doctrine/ORM => src}/Repository/DefaultRepositoryFactory.php (100%) rename {lib/Doctrine/ORM => src}/Repository/Exception/InvalidFindByCall.php (100%) rename {lib/Doctrine/ORM => src}/Repository/Exception/InvalidMagicMethodCall.php (100%) rename {lib/Doctrine/ORM => src}/Repository/RepositoryFactory.php (100%) rename {lib/Doctrine/ORM => src}/Tools/AttachEntityListenersListener.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/Command/AbstractEntityManagerCommand.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/Command/ClearCache/CollectionRegionCommand.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/Command/ClearCache/EntityRegionCommand.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/Command/ClearCache/MetadataCommand.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/Command/ClearCache/QueryCommand.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/Command/ClearCache/QueryRegionCommand.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/Command/ClearCache/ResultCommand.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/Command/GenerateProxiesCommand.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/Command/InfoCommand.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/Command/MappingDescribeCommand.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/Command/RunDqlCommand.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/Command/SchemaTool/AbstractCommand.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/Command/SchemaTool/CreateCommand.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/Command/SchemaTool/DropCommand.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/Command/SchemaTool/UpdateCommand.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/Command/ValidateSchemaCommand.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/ConsoleRunner.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/EntityManagerProvider.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/EntityManagerProvider/ConnectionFromManagerProvider.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/EntityManagerProvider/SingleManagerProvider.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/EntityManagerProvider/UnknownManagerException.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Console/MetadataFilter.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Debug.php (100%) rename {lib/Doctrine/ORM => src}/Tools/DebugUnitOfWorkListener.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Event/GenerateSchemaEventArgs.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Event/GenerateSchemaTableEventArgs.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Exception/MissingColumnException.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Exception/NotSupported.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Pagination/CountOutputWalker.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Pagination/CountWalker.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Pagination/Exception/RowNumberOverFunctionNotEnabled.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Pagination/LimitSubqueryOutputWalker.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Pagination/LimitSubqueryWalker.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Pagination/Paginator.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Pagination/RootTypeWalker.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Pagination/RowNumberOverFunction.php (100%) rename {lib/Doctrine/ORM => src}/Tools/Pagination/WhereInWalker.php (100%) rename {lib/Doctrine/ORM => src}/Tools/ResolveTargetEntityListener.php (100%) rename {lib/Doctrine/ORM => src}/Tools/SchemaTool.php (100%) rename {lib/Doctrine/ORM => src}/Tools/SchemaValidator.php (100%) rename {lib/Doctrine/ORM => src}/Tools/ToolEvents.php (100%) rename {lib/Doctrine/ORM => src}/Tools/ToolsException.php (100%) rename {lib/Doctrine/ORM => src}/TransactionRequiredException.php (100%) rename {lib/Doctrine/ORM => src}/UnexpectedResultException.php (100%) rename {lib/Doctrine/ORM => src}/UnitOfWork.php (100%) rename {lib/Doctrine/ORM => src}/Utility/HierarchyDiscriminatorResolver.php (100%) rename {lib/Doctrine/ORM => src}/Utility/IdentifierFlattener.php (100%) rename {lib/Doctrine/ORM => src}/Utility/LockSqlHelper.php (100%) rename {lib/Doctrine/ORM => src}/Utility/PersisterHelper.php (100%) rename tests/{Doctrine => }/Performance/ArrayResultFactory.php (100%) rename tests/{Doctrine => }/Performance/ChangeSet/UnitOfWorkComputeChangesBench.php (100%) rename tests/{Doctrine => }/Performance/EntityManagerFactory.php (100%) rename tests/{Doctrine => }/Performance/Hydration/MixedQueryFetchJoinArrayHydrationPerformanceBench.php (100%) rename tests/{Doctrine => }/Performance/Hydration/MixedQueryFetchJoinFullObjectHydrationPerformanceBench.php (100%) rename tests/{Doctrine => }/Performance/Hydration/SimpleHydrationBench.php (100%) rename tests/{Doctrine => }/Performance/Hydration/SimpleInsertPerformanceBench.php (100%) rename tests/{Doctrine => }/Performance/Hydration/SimpleQueryArrayHydrationPerformanceBench.php (100%) rename tests/{Doctrine => }/Performance/Hydration/SimpleQueryFullObjectHydrationPerformanceBench.php (100%) rename tests/{Doctrine => }/Performance/Hydration/SimpleQueryScalarHydrationPerformanceBench.php (100%) rename tests/{Doctrine => }/Performance/Hydration/SingleTableInheritanceHydrationPerformanceBench.php (100%) rename tests/{Doctrine => }/Performance/Hydration/SingleTableInheritanceInsertPerformanceBench.php (100%) rename tests/{Doctrine => }/Performance/LazyLoading/ProxyInitializationTimeBench.php (100%) rename tests/{Doctrine => }/Performance/LazyLoading/ProxyInstantiationTimeBench.php (100%) rename tests/{Doctrine => }/Performance/Mock/NonLoadingPersister.php (100%) rename tests/{Doctrine => }/Performance/Mock/NonProxyLoadingEntityManager.php (100%) rename tests/{Doctrine => }/Performance/Mock/NonProxyLoadingUnitOfWork.php (100%) rename tests/{Doctrine => }/Performance/Query/QueryBoundParameterProcessingBench.php (100%) rename tests/{Doctrine => }/StaticAnalysis/Mapping/class-metadata-constructor.php (100%) rename tests/{Doctrine => }/StaticAnalysis/Tools/Pagination/paginator-covariant.php (100%) rename tests/{Doctrine => }/StaticAnalysis/get-metadata.php (100%) rename tests/{Doctrine => }/Tests/DbalExtensions/Connection.php (100%) rename tests/{Doctrine => }/Tests/DbalExtensions/QueryLog.php (100%) rename tests/{Doctrine => }/Tests/DbalExtensions/SqlLogger.php (100%) rename tests/{Doctrine => }/Tests/DbalTypes/CustomIdObject.php (100%) rename tests/{Doctrine => }/Tests/DbalTypes/CustomIdObjectType.php (100%) rename tests/{Doctrine => }/Tests/DbalTypes/CustomIntType.php (100%) rename tests/{Doctrine => }/Tests/DbalTypes/GH8565EmployeePayloadType.php (100%) rename tests/{Doctrine => }/Tests/DbalTypes/GH8565ManagerPayloadType.php (100%) rename tests/{Doctrine => }/Tests/DbalTypes/NegativeToPositiveType.php (100%) rename tests/{Doctrine => }/Tests/DbalTypes/Rot13Type.php (100%) rename tests/{Doctrine => }/Tests/DbalTypes/UpperCaseStringType.php (100%) rename tests/{Doctrine => }/Tests/EventListener/CacheMetadataListener.php (100%) rename tests/{Doctrine => }/Tests/IterableTester.php (100%) rename tests/{Doctrine => }/Tests/Mocks/CacheEntryMock.php (100%) rename tests/{Doctrine => }/Tests/Mocks/CacheKeyMock.php (100%) rename tests/{Doctrine => }/Tests/Mocks/CacheRegionMock.php (100%) rename tests/{Doctrine => }/Tests/Mocks/CompatibilityType.php (100%) rename tests/{Doctrine => }/Tests/Mocks/ConcurrentRegionMock.php (100%) rename tests/{Doctrine => }/Tests/Mocks/CustomTreeWalkerJoin.php (100%) rename tests/{Doctrine => }/Tests/Mocks/EntityManagerMock.php (100%) rename tests/{Doctrine => }/Tests/Mocks/EntityPersisterMock.php (100%) rename tests/{Doctrine => }/Tests/Mocks/ExceptionConverterMock.php (100%) rename tests/{Doctrine => }/Tests/Mocks/MetadataDriverMock.php (100%) rename tests/{Doctrine => }/Tests/Mocks/NullSqlWalker.php (100%) rename tests/{Doctrine => }/Tests/Mocks/SchemaManagerMock.php (100%) rename tests/{Doctrine => }/Tests/Mocks/TimestampRegionMock.php (100%) rename tests/{Doctrine => }/Tests/Mocks/UnitOfWorkMock.php (100%) rename tests/{Doctrine => }/Tests/Models/CMS/CmsAddress.php (100%) rename tests/{Doctrine => }/Tests/Models/CMS/CmsAddressDTO.php (100%) rename tests/{Doctrine => }/Tests/Models/CMS/CmsAddressListener.php (100%) rename tests/{Doctrine => }/Tests/Models/CMS/CmsArticle.php (100%) rename tests/{Doctrine => }/Tests/Models/CMS/CmsComment.php (100%) rename tests/{Doctrine => }/Tests/Models/CMS/CmsEmail.php (100%) rename tests/{Doctrine => }/Tests/Models/CMS/CmsEmployee.php (100%) rename tests/{Doctrine => }/Tests/Models/CMS/CmsGroup.php (100%) rename tests/{Doctrine => }/Tests/Models/CMS/CmsPhonenumber.php (100%) rename tests/{Doctrine => }/Tests/Models/CMS/CmsTag.php (100%) rename tests/{Doctrine => }/Tests/Models/CMS/CmsUser.php (100%) rename tests/{Doctrine => }/Tests/Models/CMS/CmsUserDTO.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/Action.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/Address.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/Attraction.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/AttractionContactInfo.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/AttractionInfo.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/AttractionLocationInfo.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/Bar.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/Beach.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/City.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/Client.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/ComplexAction.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/Country.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/Flight.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/Login.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/Person.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/Restaurant.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/State.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/Token.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/Travel.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/Traveler.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/TravelerProfile.php (100%) rename tests/{Doctrine => }/Tests/Models/Cache/TravelerProfileInfo.php (100%) rename tests/{Doctrine => }/Tests/Models/Company/CompanyAuction.php (100%) rename tests/{Doctrine => }/Tests/Models/Company/CompanyCar.php (100%) rename tests/{Doctrine => }/Tests/Models/Company/CompanyContract.php (100%) rename tests/{Doctrine => }/Tests/Models/Company/CompanyContractListener.php (100%) rename tests/{Doctrine => }/Tests/Models/Company/CompanyEmployee.php (100%) rename tests/{Doctrine => }/Tests/Models/Company/CompanyEvent.php (100%) rename tests/{Doctrine => }/Tests/Models/Company/CompanyFixContract.php (100%) rename tests/{Doctrine => }/Tests/Models/Company/CompanyFlexContract.php (100%) rename tests/{Doctrine => }/Tests/Models/Company/CompanyFlexUltraContract.php (100%) rename tests/{Doctrine => }/Tests/Models/Company/CompanyFlexUltraContractListener.php (100%) rename tests/{Doctrine => }/Tests/Models/Company/CompanyManager.php (100%) rename tests/{Doctrine => }/Tests/Models/Company/CompanyOrganization.php (100%) rename tests/{Doctrine => }/Tests/Models/Company/CompanyPerson.php (100%) rename tests/{Doctrine => }/Tests/Models/Company/CompanyRaffle.php (100%) rename tests/{Doctrine => }/Tests/Models/CompositeKeyInheritance/JoinedChildClass.php (100%) rename tests/{Doctrine => }/Tests/Models/CompositeKeyInheritance/JoinedDerivedChildClass.php (100%) rename tests/{Doctrine => }/Tests/Models/CompositeKeyInheritance/JoinedDerivedIdentityClass.php (100%) rename tests/{Doctrine => }/Tests/Models/CompositeKeyInheritance/JoinedDerivedRootClass.php (100%) rename tests/{Doctrine => }/Tests/Models/CompositeKeyInheritance/JoinedRootClass.php (100%) rename tests/{Doctrine => }/Tests/Models/CompositeKeyInheritance/SingleChildClass.php (100%) rename tests/{Doctrine => }/Tests/Models/CompositeKeyInheritance/SingleRootClass.php (100%) rename tests/{Doctrine => }/Tests/Models/CustomType/CustomIdObjectTypeChild.php (100%) rename tests/{Doctrine => }/Tests/Models/CustomType/CustomIdObjectTypeParent.php (100%) rename tests/{Doctrine => }/Tests/Models/CustomType/CustomTypeChild.php (100%) rename tests/{Doctrine => }/Tests/Models/CustomType/CustomTypeParent.php (100%) rename tests/{Doctrine => }/Tests/Models/CustomType/CustomTypeUpperCase.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC117/DDC117ApproveChanges.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC117/DDC117Article.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC117/DDC117ArticleDetails.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC117/DDC117Editor.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC117/DDC117Link.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC117/DDC117Reference.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC117/DDC117Translation.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC1476/DDC1476EntityWithDefaultFieldType.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC1590/DDC1590Entity.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC1590/DDC1590User.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC1872/DDC1872Bar.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC1872/DDC1872ExampleEntityWithOverride.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC1872/DDC1872ExampleEntityWithoutOverride.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC1872/DDC1872ExampleTrait.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC2372/DDC2372Address.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC2372/DDC2372Admin.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC2372/DDC2372User.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC2372/Traits/DDC2372AddressAndAccessors.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC2504/DDC2504ChildClass.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC2504/DDC2504OtherClass.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC2504/DDC2504RootClass.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC2825/ExplicitSchemaAndTable.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC2825/SchemaAndTableInTableName.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3231/DDC3231EntityRepository.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3231/DDC3231User1.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3231/DDC3231User1NoNamespace.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3231/DDC3231User2.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3231/DDC3231User2NoNamespace.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3293/DDC3293Address.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3293/DDC3293User.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3293/DDC3293UserPrefixed.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3346/DDC3346Article.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3346/DDC3346Author.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3579/DDC3579Admin.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3579/DDC3579Group.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3579/DDC3579User.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3597/DDC3597Image.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3597/DDC3597Media.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3597/DDC3597Root.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3597/Embeddable/DDC3597Dimension.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3699/DDC3699Child.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3699/DDC3699Parent.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3699/DDC3699RelationMany.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3699/DDC3699RelationOne.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3711/DDC3711EntityA.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3711/DDC3711EntityB.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3899/DDC3899Contract.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3899/DDC3899FixContract.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3899/DDC3899FlexContract.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC3899/DDC3899User.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC4006/DDC4006User.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC4006/DDC4006UserId.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC5934/DDC5934BaseContract.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC5934/DDC5934Contract.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC5934/DDC5934Member.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC6412/DDC6412File.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC753/DDC753CustomRepository.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC753/DDC753DefaultRepository.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC753/DDC753EntityWithCustomRepository.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC753/DDC753EntityWithDefaultCustomRepository.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC753/DDC753EntityWithInvalidRepository.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC753/DDC753InvalidRepository.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC869/DDC869ChequePayment.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC869/DDC869CreditCardPayment.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC869/DDC869Payment.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC869/DDC869PaymentRepository.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC889/DDC889Class.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC889/DDC889Entity.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC889/DDC889SuperClass.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC964/DDC964Address.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC964/DDC964Admin.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC964/DDC964Group.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC964/DDC964Guest.php (100%) rename tests/{Doctrine => }/Tests/Models/DDC964/DDC964User.php (100%) rename tests/{Doctrine => }/Tests/Models/DataTransferObjects/DtoWithArrayOfEnums.php (100%) rename tests/{Doctrine => }/Tests/Models/DataTransferObjects/DtoWithEnum.php (100%) rename tests/{Doctrine => }/Tests/Models/DirectoryTree/AbstractContentItem.php (100%) rename tests/{Doctrine => }/Tests/Models/DirectoryTree/Directory.php (100%) rename tests/{Doctrine => }/Tests/Models/DirectoryTree/File.php (100%) rename tests/{Doctrine => }/Tests/Models/ECommerce/ECommerceCart.php (100%) rename tests/{Doctrine => }/Tests/Models/ECommerce/ECommerceCategory.php (100%) rename tests/{Doctrine => }/Tests/Models/ECommerce/ECommerceCustomer.php (100%) rename tests/{Doctrine => }/Tests/Models/ECommerce/ECommerceFeature.php (100%) rename tests/{Doctrine => }/Tests/Models/ECommerce/ECommerceProduct.php (100%) rename tests/{Doctrine => }/Tests/Models/ECommerce/ECommerceShipping.php (100%) rename tests/{Doctrine => }/Tests/Models/Enums/AccessLevel.php (100%) rename tests/{Doctrine => }/Tests/Models/Enums/Card.php (100%) rename tests/{Doctrine => }/Tests/Models/Enums/CardWithDefault.php (100%) rename tests/{Doctrine => }/Tests/Models/Enums/CardWithNullable.php (100%) rename tests/{Doctrine => }/Tests/Models/Enums/City.php (100%) rename tests/{Doctrine => }/Tests/Models/Enums/Product.php (100%) rename tests/{Doctrine => }/Tests/Models/Enums/Quantity.php (100%) rename tests/{Doctrine => }/Tests/Models/Enums/Scale.php (100%) rename tests/{Doctrine => }/Tests/Models/Enums/Suit.php (100%) rename tests/{Doctrine => }/Tests/Models/Enums/TypedCard.php (100%) rename tests/{Doctrine => }/Tests/Models/Enums/TypedCardEnumCompositeId.php (100%) rename tests/{Doctrine => }/Tests/Models/Enums/TypedCardEnumId.php (100%) rename tests/{Doctrine => }/Tests/Models/Enums/Unit.php (100%) rename tests/{Doctrine => }/Tests/Models/Enums/UserStatus.php (100%) rename tests/{Doctrine => }/Tests/Models/Forum/ForumAvatar.php (100%) rename tests/{Doctrine => }/Tests/Models/Forum/ForumBoard.php (100%) rename tests/{Doctrine => }/Tests/Models/Forum/ForumCategory.php (100%) rename tests/{Doctrine => }/Tests/Models/Forum/ForumEntry.php (100%) rename tests/{Doctrine => }/Tests/Models/Forum/ForumUser.php (100%) rename tests/{Doctrine => }/Tests/Models/GH10132/Complex.php (100%) rename tests/{Doctrine => }/Tests/Models/GH10132/ComplexChild.php (100%) rename tests/{Doctrine => }/Tests/Models/GH10288/GH10288People.php (100%) rename tests/{Doctrine => }/Tests/Models/GH10334/GH10334Foo.php (100%) rename tests/{Doctrine => }/Tests/Models/GH10334/GH10334FooCollection.php (100%) rename tests/{Doctrine => }/Tests/Models/GH10334/GH10334Product.php (100%) rename tests/{Doctrine => }/Tests/Models/GH10334/GH10334ProductType.php (100%) rename tests/{Doctrine => }/Tests/Models/GH10334/GH10334ProductTypeId.php (100%) rename tests/{Doctrine => }/Tests/Models/GH10336/GH10336Entity.php (100%) rename tests/{Doctrine => }/Tests/Models/GH10336/GH10336Relation.php (100%) rename tests/{Doctrine => }/Tests/Models/GH7141/GH7141Article.php (100%) rename tests/{Doctrine => }/Tests/Models/GH7316/GH7316Article.php (100%) rename tests/{Doctrine => }/Tests/Models/GH7717/GH7717Child.php (100%) rename tests/{Doctrine => }/Tests/Models/GH7717/GH7717Parent.php (100%) rename tests/{Doctrine => }/Tests/Models/GH8565/GH8565Employee.php (100%) rename tests/{Doctrine => }/Tests/Models/GH8565/GH8565Manager.php (100%) rename tests/{Doctrine => }/Tests/Models/GH8565/GH8565Person.php (100%) rename tests/{Doctrine => }/Tests/Models/Generic/BooleanModel.php (100%) rename tests/{Doctrine => }/Tests/Models/Generic/DateTimeModel.php (100%) rename tests/{Doctrine => }/Tests/Models/Generic/DecimalModel.php (100%) rename tests/{Doctrine => }/Tests/Models/Generic/NonAlphaColumnsEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/Generic/SerializationModel.php (100%) rename tests/{Doctrine => }/Tests/Models/GeoNames/Admin1.php (100%) rename tests/{Doctrine => }/Tests/Models/GeoNames/Admin1AlternateName.php (100%) rename tests/{Doctrine => }/Tests/Models/GeoNames/City.php (100%) rename tests/{Doctrine => }/Tests/Models/GeoNames/Country.php (100%) rename tests/{Doctrine => }/Tests/Models/Global/GlobalNamespaceModel.php (100%) rename tests/{Doctrine => }/Tests/Models/Hydration/EntityWithArrayDefaultArrayValueM2M.php (100%) rename tests/{Doctrine => }/Tests/Models/Hydration/SimpleEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/Issue5989/Issue5989Employee.php (100%) rename tests/{Doctrine => }/Tests/Models/Issue5989/Issue5989Manager.php (100%) rename tests/{Doctrine => }/Tests/Models/Issue5989/Issue5989Person.php (100%) rename tests/{Doctrine => }/Tests/Models/Issue9300/Issue9300Child.php (100%) rename tests/{Doctrine => }/Tests/Models/Issue9300/Issue9300Parent.php (100%) rename tests/{Doctrine => }/Tests/Models/JoinedInheritanceType/AnotherChildClass.php (100%) rename tests/{Doctrine => }/Tests/Models/JoinedInheritanceType/ChildClass.php (100%) rename tests/{Doctrine => }/Tests/Models/JoinedInheritanceType/RootClass.php (100%) rename tests/{Doctrine => }/Tests/Models/Legacy/LegacyArticle.php (100%) rename tests/{Doctrine => }/Tests/Models/Legacy/LegacyCar.php (100%) rename tests/{Doctrine => }/Tests/Models/Legacy/LegacyUser.php (100%) rename tests/{Doctrine => }/Tests/Models/Legacy/LegacyUserReference.php (100%) rename tests/{Doctrine => }/Tests/Models/ManyToManyPersister/ChildClass.php (100%) rename tests/{Doctrine => }/Tests/Models/ManyToManyPersister/OtherParentClass.php (100%) rename tests/{Doctrine => }/Tests/Models/ManyToManyPersister/ParentClass.php (100%) rename tests/{Doctrine => }/Tests/Models/MixedToOneIdentity/CompositeToOneKeyState.php (100%) rename tests/{Doctrine => }/Tests/Models/MixedToOneIdentity/Country.php (100%) rename tests/{Doctrine => }/Tests/Models/Navigation/NavCountry.php (100%) rename tests/{Doctrine => }/Tests/Models/Navigation/NavPhotos.php (100%) rename tests/{Doctrine => }/Tests/Models/Navigation/NavPointOfInterest.php (100%) rename tests/{Doctrine => }/Tests/Models/Navigation/NavTour.php (100%) rename tests/{Doctrine => }/Tests/Models/Navigation/NavUser.php (100%) rename tests/{Doctrine => }/Tests/Models/NonPublicSchemaJoins/User.php (100%) rename tests/{Doctrine => }/Tests/Models/NullDefault/NullDefaultColumn.php (100%) rename tests/{Doctrine => }/Tests/Models/OneToOneInverseSideLoad/InverseSide.php (100%) rename tests/{Doctrine => }/Tests/Models/OneToOneInverseSideLoad/OwningSide.php (100%) rename tests/{Doctrine => }/Tests/Models/OneToOneSingleTableInheritance/Cat.php (100%) rename tests/{Doctrine => }/Tests/Models/OneToOneSingleTableInheritance/LitterBox.php (100%) rename tests/{Doctrine => }/Tests/Models/OneToOneSingleTableInheritance/Pet.php (100%) rename tests/{Doctrine => }/Tests/Models/Pagination/Company.php (100%) rename tests/{Doctrine => }/Tests/Models/Pagination/Department.php (100%) rename tests/{Doctrine => }/Tests/Models/Pagination/Logo.php (100%) rename tests/{Doctrine => }/Tests/Models/Pagination/User.php (100%) rename tests/{Doctrine => }/Tests/Models/Pagination/User1.php (100%) rename tests/{Doctrine => }/Tests/Models/PersistentObject/PersistentCollectionContent.php (100%) rename tests/{Doctrine => }/Tests/Models/PersistentObject/PersistentCollectionHolder.php (100%) rename tests/{Doctrine => }/Tests/Models/PersistentObject/PersistentEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/Project/Project.php (100%) rename tests/{Doctrine => }/Tests/Models/Project/ProjectId.php (100%) rename tests/{Doctrine => }/Tests/Models/Project/ProjectInvalidMapping.php (100%) rename tests/{Doctrine => }/Tests/Models/Project/ProjectName.php (100%) rename tests/{Doctrine => }/Tests/Models/Quote/Address.php (100%) rename tests/{Doctrine => }/Tests/Models/Quote/City.php (100%) rename tests/{Doctrine => }/Tests/Models/Quote/FullAddress.php (100%) rename tests/{Doctrine => }/Tests/Models/Quote/Group.php (100%) rename tests/{Doctrine => }/Tests/Models/Quote/NumericEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/Quote/Phone.php (100%) rename tests/{Doctrine => }/Tests/Models/Quote/User.php (100%) rename tests/{Doctrine => }/Tests/Models/ReadonlyProperties/Author.php (100%) rename tests/{Doctrine => }/Tests/Models/ReadonlyProperties/Book.php (100%) rename tests/{Doctrine => }/Tests/Models/ReadonlyProperties/SimpleBook.php (100%) rename tests/{Doctrine => }/Tests/Models/Reflection/AbstractEmbeddable.php (100%) rename tests/{Doctrine => }/Tests/Models/Reflection/ArrayObjectExtendingClass.php (100%) rename tests/{Doctrine => }/Tests/Models/Reflection/ClassWithMixedProperties.php (100%) rename tests/{Doctrine => }/Tests/Models/Reflection/ConcreteEmbeddable.php (100%) rename tests/{Doctrine => }/Tests/Models/Reflection/ParentClass.php (100%) rename tests/{Doctrine => }/Tests/Models/Routing/RoutingLeg.php (100%) rename tests/{Doctrine => }/Tests/Models/Routing/RoutingLocation.php (100%) rename tests/{Doctrine => }/Tests/Models/Routing/RoutingRoute.php (100%) rename tests/{Doctrine => }/Tests/Models/Routing/RoutingRouteBooking.php (100%) rename tests/{Doctrine => }/Tests/Models/StockExchange/Bond.php (100%) rename tests/{Doctrine => }/Tests/Models/StockExchange/Market.php (100%) rename tests/{Doctrine => }/Tests/Models/StockExchange/Stock.php (100%) rename tests/{Doctrine => }/Tests/Models/Taxi/Car.php (100%) rename tests/{Doctrine => }/Tests/Models/Taxi/Driver.php (100%) rename tests/{Doctrine => }/Tests/Models/Taxi/PaidRide.php (100%) rename tests/{Doctrine => }/Tests/Models/Taxi/Ride.php (100%) rename tests/{Doctrine => }/Tests/Models/Tweet/Tweet.php (100%) rename tests/{Doctrine => }/Tests/Models/Tweet/User.php (100%) rename tests/{Doctrine => }/Tests/Models/Tweet/UserList.php (100%) rename tests/{Doctrine => }/Tests/Models/TypedProperties/Contact.php (100%) rename tests/{Doctrine => }/Tests/Models/TypedProperties/UserTyped.php (100%) rename tests/{Doctrine => }/Tests/Models/TypedProperties/UserTypedWithCustomTypedField.php (100%) rename tests/{Doctrine => }/Tests/Models/Upsertable/Insertable.php (100%) rename tests/{Doctrine => }/Tests/Models/Upsertable/Updatable.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/AuxiliaryEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/InversedManyToManyCompositeIdEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/InversedManyToManyCompositeIdForeignKeyEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/InversedManyToManyEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/InversedManyToManyExtraLazyEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/InversedOneToManyCompositeIdEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/InversedOneToManyCompositeIdForeignKeyEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/InversedOneToManyEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/InversedOneToManyExtraLazyEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/InversedOneToOneCompositeIdEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/InversedOneToOneCompositeIdForeignKeyEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/InversedOneToOneEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/OwningManyToManyCompositeIdEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/OwningManyToManyCompositeIdForeignKeyEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/OwningManyToManyEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/OwningManyToManyExtraLazyEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/OwningManyToOneCompositeIdEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/OwningManyToOneCompositeIdForeignKeyEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/OwningManyToOneEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/OwningManyToOneExtraLazyEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/OwningManyToOneIdForeignKeyEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/OwningOneToOneCompositeIdEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/OwningOneToOneCompositeIdForeignKeyEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueConversionType/OwningOneToOneEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueObjects/Name.php (100%) rename tests/{Doctrine => }/Tests/Models/ValueObjects/Person.php (100%) rename tests/{Doctrine => }/Tests/Models/VersionedManyToOne/Article.php (100%) rename tests/{Doctrine => }/Tests/Models/VersionedManyToOne/Category.php (100%) rename tests/{Doctrine => }/Tests/Models/VersionedOneToOne/FirstRelatedEntity.php (100%) rename tests/{Doctrine => }/Tests/Models/VersionedOneToOne/SecondRelatedEntity.php (100%) rename tests/{Doctrine => }/Tests/ORM/AbstractQueryTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/CacheConfigTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/CacheKeyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/CacheLoggerChainTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/DefaultCacheFactoryTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/DefaultCacheTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/DefaultCollectionHydratorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/DefaultEntityHydratorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/DefaultQueryCacheTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/DefaultRegionTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/FileLockRegionTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/Persister/Collection/CollectionPersisterTestCase.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/Persister/Collection/NonStrictReadWriteCachedCollectionPersisterTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/Persister/Collection/ReadOnlyCachedCollectionPersisterTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/Persister/Collection/ReadWriteCachedCollectionPersisterTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/Persister/Entity/EntityPersisterTestCase.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/Persister/Entity/NonStrictReadWriteCachedEntityPersisterTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/Persister/Entity/ReadOnlyCachedEntityPersisterTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/Persister/Entity/ReadWriteCachedEntityPersisterTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/RegionTestCase.php (100%) rename tests/{Doctrine => }/Tests/ORM/Cache/StatisticsCacheLoggerTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/ConfigurationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Entity/ConstructorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/EntityManagerTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/EntityNotFoundExceptionTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Event/OnClassMetadataNotFoundEventArgsTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/AbstractManyToManyAssociationTestCase.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/AdvancedAssociationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/AdvancedDqlQueryTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/BasicFunctionalTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/CascadeRemoveOrderTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ClassTableInheritanceSecondTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ClassTableInheritanceTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ClearEventTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/CompositePrimaryKeyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/CompositePrimaryKeyWithAssociationsTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/CustomFunctionsTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/CustomIdObjectTypeTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/DatabaseDriverTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/DatabaseDriverTestCase.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/DefaultValuesTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/DetachedEntityTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/EagerFetchCollectionTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/EntityListenersTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/EntityRepositoryCriteriaTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/EntityRepositoryTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/EnumTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ExtraLazyCollectionTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/FlushEventTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/GH7877Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/HydrationCacheTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/IdentityMapTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/IndexByAssociationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/InsertableUpdatableTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/JoinedTableCompositeKeyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/LifecycleCallbackTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Locking/GearmanLockTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Locking/LockAgentWorker.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Locking/LockTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Locking/OptimisticTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ManyToManyBasicAssociationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ManyToManyBidirectionalAssociationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ManyToManyEventTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ManyToManySelfReferentialAssociationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ManyToManyUnidirectionalAssociationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/MappedSuperclassTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/NativeQueryTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/NewOperatorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/OneToManyBidirectionalAssociationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/OneToManyOrphanRemovalTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/OneToManySelfReferentialAssociationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/OneToManyUnidirectionalAssociationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/OneToOneBidirectionalAssociationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/OneToOneEagerLoadingTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/OneToOneInverseSideLoadAfterDqlQueryTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/OneToOneOrphanRemovalTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/OneToOneSelfReferentialAssociationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/OneToOneSingleTableInheritanceTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/OneToOneUnidirectionalAssociationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/OrderedCollectionTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/OrderedJoinedTableInheritanceCollectionTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/PaginationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ParserResultSerializationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ParserResults/single_select_2_17_0.txt (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/PersistentCollectionCriteriaTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/PersistentCollectionTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/PostFlushEventTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/PostLoadEventTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ProxiesLikeEntitiesTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/QueryBuilderParenthesisTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/QueryCacheTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/QueryDqlFunctionTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/QueryIterableTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/QueryTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ReadOnlyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ReadonlyPropertiesTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ReferenceProxyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ResultCacheTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SQLFilterTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SchemaTool/CompanySchemaTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SchemaTool/DBAL483Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SchemaTool/DDC214Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SchemaTool/MySqlSchemaToolTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SchemaTool/PostgreSqlSchemaToolTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SchemaValidatorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SecondLevelCacheCompositePrimaryKeyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SecondLevelCacheCompositePrimaryKeyWithAssociationsTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SecondLevelCacheConcurrentTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SecondLevelCacheCriteriaTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SecondLevelCacheExtraLazyCollectionTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SecondLevelCacheFunctionalTestCase.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SecondLevelCacheJoinTableInheritanceTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SecondLevelCacheManyToManyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SecondLevelCacheManyToOneTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SecondLevelCacheOneToManyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SecondLevelCacheOneToOneTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SecondLevelCacheQueryCacheTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SecondLevelCacheRepositoryTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SecondLevelCacheSingleTableInheritanceTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SecondLevelCacheTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SequenceGeneratorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SingleTableCompositeKeyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/SingleTableInheritanceTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/StandardEntityPersisterTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1040Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1041Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1043Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1080Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1113Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1129Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1163Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC117Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1181Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1193Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1209Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1225Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1228Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1238Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1250Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1300Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1301Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1306Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1335Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1400Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC142Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1430Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1436Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC144Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1452Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1454Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1458Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1461Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1514Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1515Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1526Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1545Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1548Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1595Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC163Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1643Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1654Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1655Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1666Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1685Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC168Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1695Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1707Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1719Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1757Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1778Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1787Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1843Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1884Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1885Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1918Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1925Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC192Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1995Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC1998Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC199Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2012Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2074Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2084Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2090Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2106Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC211Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2138Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2175Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2182Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2214Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2224Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2252Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2306Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2346Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2350Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2359Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC237Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2387Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2415Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2494Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2575Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2579Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC258Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2602Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2655Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2660Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2692Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2759Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2775Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2780Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2790Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC279Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2825Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2862Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2895Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2931Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2943Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2984Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC2996Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3033Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3042Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3068Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC309Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3103Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3123Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3160Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3170Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3192Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3223Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3300Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3303Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC331Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3330Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3346Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC345Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC353Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3582Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3597Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3634Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3644Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3719Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC371Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3785Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC381Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC3967Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC4003Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC4024Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC422Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC425Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC440Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC444Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC448Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC493Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC512Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC513Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC522Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC531Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC5684Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC588Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC599Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC618Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC6303Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC633Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC6460Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC6558Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC656Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC657Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC698Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC69Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC719Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC735Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC736Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC748Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC767Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC7969Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC809Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC812Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC832Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC837Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC849Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC881Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC933Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC949Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC960Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/DDC992Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10049/GH10049Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10049/ReadOnlyPropertyInheritor.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10049/ReadOnlyPropertyOwner.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10132Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10288Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10334Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10336Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10348Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10387Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10450Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10454Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10462Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10473Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10531Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10532Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10566Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10625Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10661/GH10661Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10661/InvalidChildEntity.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10661/InvalidEntity.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10747Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10752Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10808Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10869Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH10880Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH11017/GH11017Entity.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH11017/GH11017Enum.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH11017/GH11017Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH11037/GH11037Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH11037/IntEntityStatus.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH11037/InvalidEntityWithTypedEnum.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH11037/StringEntityStatus.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH11037/ValidEntityWithTypedEnum.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH2947Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH5562Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH5742Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH5762Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH5804Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH5887Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH5988Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH5998Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH6029Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH6141Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH6217Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH6362Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH6394Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH6402Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH6464Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH6499OneToManyRelationshipTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH6499OneToOneRelationshipTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH6499Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH6531Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH6682Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH6699Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH6740Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH6823Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH6937Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7006Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7012Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7062Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7067Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7068Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7079Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7180Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7259Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7286Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7366Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7496WithToIterableTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7505Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7512Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7629Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7661Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7684Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7717Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7735Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7737Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7761Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7767Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7820Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7829Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7836Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7864Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7869Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7875Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH7941Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH8055Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH8061Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH8127Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH8217Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH8415Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH8415ToManyAssociationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH8443Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH8499Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH8663Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH8914Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH9027Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH9109Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH9192Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH9230Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH9335Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH9467/GH9467Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceChild.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceNonInsertableColumn.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceNonUpdatableColumn.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceNonWritableColumn.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceRoot.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceWritableColumn.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH9516Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH9579Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/GH9807Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/Issue5989Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/Issue9300Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/Ticket2481Test.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfAbstractTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfMultiLevelTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfParametricTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfWithMultipleParametersTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/TypeTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/TypeValueSqlTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/UnitOfWorkLifecycleTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ValueConversionType/ManyToManyCompositeIdForeignKeyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ValueConversionType/ManyToManyCompositeIdTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ValueConversionType/ManyToManyExtraLazyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ValueConversionType/ManyToManyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ValueConversionType/OneToManyCompositeIdForeignKeyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ValueConversionType/OneToManyCompositeIdTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ValueConversionType/OneToManyExtraLazyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ValueConversionType/OneToManyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ValueConversionType/OneToOneCompositeIdForeignKeyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ValueConversionType/OneToOneCompositeIdTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ValueConversionType/OneToOneTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/ValueObjectsTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Functional/VersionedOneToOneTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Hydration/AbstractHydratorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Hydration/ArrayHydratorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Hydration/CustomHydratorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Hydration/HydrationTestCase.php (100%) rename tests/{Doctrine => }/Tests/ORM/Hydration/ObjectHydratorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Hydration/ResultSetMappingTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Hydration/ScalarColumnHydratorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Hydration/ScalarHydratorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Hydration/SimpleObjectHydratorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Hydration/SingleScalarHydratorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Id/AssignedGeneratorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Id/SequenceGeneratorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Internal/HydrationCompleteHandlerTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Internal/TopologicalSortTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/LazyCriteriaCollectionTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/AnsiQuoteStrategyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/AssociationMappingTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/AttributeDriverTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/AttributeReaderTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/BasicInheritanceMappingTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/ClassMetadataBuilderTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/ClassMetadataFactoryTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/ClassMetadataLoadEventTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/ClassMetadataTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/DefaultQuoteStrategyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/DiscriminatorColumnMappingTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/EmbeddedClassMappingTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/EntityListenerResolverTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/FieldBuilderTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/FieldMappingTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/Fixtures/AttributeEntityWithNestedJoinColumns.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/InverseSideMappingTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/JoinColumnMappingTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/JoinTableMappingTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/ManyToManyOwningSideMappingTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/ManyToOneAssociationMappingTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/MappingDriverTestCase.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/NamingStrategy/JoinColumnClassNamingStrategy.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/NamingStrategyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/OneToOneOwningSideMappingTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/OwningSideMappingTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/QuoteStrategyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/ReflectionEmbeddedPropertyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/ReflectionReadonlyPropertyTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/StaticPHPMappingDriverTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/Symfony/DriverTestCase.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/Symfony/XmlDriverTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/ToManyAssociationMappingTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/TypedFieldMapper/CustomIntAsStringTypedFieldMapper.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/TypedFieldMapperTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/XmlMappingDriverTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/php/Doctrine.Tests.Models.Enums.Card.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/php/Doctrine.Tests.Models.TypedProperties.UserTypedWithCustomTypedField.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/php/Doctrine.Tests.Models.Upsertable.Insertable.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/php/Doctrine.Tests.Models.Upsertable.Updatable.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/php/Doctrine.Tests.ORM.Mapping.GH10288EnumTypePerson.php (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/CatNoId.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/DDC2429Book.orm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/DDC2429Novel.orm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.CMS.CmsAddress.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.CMS.CmsUser.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Cache.City.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyContract.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyFixContract.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyFlexContract.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyFlexUltraContract.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyPerson.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC117.DDC117Translation.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC1476.DDC1476EntityWithDefaultFieldType.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC2825.ExplicitSchemaAndTable.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC2825.SchemaAndTableInTableName.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3293.DDC3293Address.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3293.DDC3293User.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3293.DDC3293UserPrefixed.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3579.DDC3579Admin.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3579.DDC3579User.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC5934.DDC5934BaseContract.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC5934.DDC5934Contract.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC869.DDC869ChequePayment.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC869.DDC869CreditCardPayment.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC869.DDC869Payment.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889Class.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889Entity.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889SuperClass.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC964.DDC964Admin.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC964.DDC964Guest.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC964.DDC964User.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Enums.Card.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.GH7141.GH7141Article.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.GH7316.GH7316Article.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Generic.BooleanModel.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Project.Project.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Project.ProjectInvalidMapping.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.TypedProperties.UserTyped.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.TypedProperties.UserTypedWithCustomTypedField.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Upsertable.Insertable.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Upsertable.Updatable.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.ValueObjects.Name.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.ValueObjects.Person.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.Animal.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.CTI.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.Comment.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.DDC1170Entity.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.DDC807Entity.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.GH10288EnumTypePerson.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.ReservedWordInTableColumn.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.SingleTableEntityIncompleteDiscriminatorColumnMapping.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.SingleTableEntityNoDiscriminatorColumnMapping.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.User.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserIncorrectAttributes.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserIncorrectIndex.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserIncorrectUniqueConstraint.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserMissingAttributes.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.XMLSLC.dcm.xml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/yaml/Doctrine.Tests.Models.TypedProperties.UserTypedWithCustomTypedField.dcm.yml (100%) rename tests/{Doctrine => }/Tests/ORM/Mapping/yaml/Doctrine.Tests.ORM.Mapping.GH10288EnumTypePerson.dcm.yml (100%) rename tests/{Doctrine => }/Tests/ORM/ORMInvalidArgumentExceptionTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/ORMSetupTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Performance/SecondLevelCacheTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/PersistentCollectionTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Persisters/BasicEntityPersisterCompositeTypeParametersTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Persisters/BasicEntityPersisterCompositeTypeSqlTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Persisters/BasicEntityPersisterTypeValueSqlTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Persisters/Exception/UnrecognizedFieldTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Persisters/ManyToManyPersisterTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Proxy/ProxyFactoryTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Query/CustomTreeWalkersJoinTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Query/CustomTreeWalkersTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Query/DeleteSqlGenerationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Query/ExprTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Query/FilterCollectionTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Query/LanguageRecognitionTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Query/LexerTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Query/ParameterTypeInfererTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Query/ParserResultTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Query/ParserTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Query/QueryExpressionVisitorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Query/QueryTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Query/SelectSqlGenerationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Query/SqlExpressionVisitorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Query/SqlWalkerTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Query/UpdateSqlGenerationTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/QueryBuilderTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Repository/DefaultRepositoryFactoryTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/AttachEntityListenersListenerTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Console/Command/ClearCacheCollectionRegionCommandTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Console/Command/ClearCacheEntityRegionCommandTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Console/Command/ClearCacheQueryRegionCommandTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Console/Command/InfoCommandTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Console/Command/MappingDescribeCommandTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Console/Command/RunDqlCommandTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Console/Command/SchemaTool/CommandTestCase.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Console/Command/SchemaTool/CreateCommandTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Console/Command/SchemaTool/DropCommandTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Console/Command/SchemaTool/Models/Keyboard.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Console/Command/ValidateSchemaCommandTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Console/ConsoleRunnerTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Console/MetadataFilterTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/DebugTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Pagination/CountOutputWalkerTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Pagination/CountWalkerTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Pagination/LimitSubqueryOutputWalkerTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Pagination/LimitSubqueryWalkerTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Pagination/PaginationTestCase.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Pagination/PaginatorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Pagination/RootTypeWalkerTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/Pagination/WhereInWalkerTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/ResolveTargetEntityListenerTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/SchemaToolTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/SchemaValidatorTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/TestAsset/ChildClass.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/TestAsset/ChildWithSameAttributesClass.php (100%) rename tests/{Doctrine => }/Tests/ORM/Tools/TestAsset/ParentClass.php (100%) rename tests/{Doctrine => }/Tests/ORM/UnitOfWorkTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Utility/HierarchyDiscriminatorResolverTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Utility/IdentifierFlattenerEnumIdTest.php (100%) rename tests/{Doctrine => }/Tests/ORM/Utility/IdentifierFlattenerTest.php (100%) rename tests/{Doctrine => }/Tests/OrmFunctionalTestCase.php (100%) rename tests/{Doctrine => }/Tests/OrmTestCase.php (100%) rename tests/{Doctrine => }/Tests/Proxy/AutoloaderTest.php (100%) rename tests/{Doctrine => }/Tests/TestInit.php (79%) rename tests/{Doctrine => }/Tests/TestUtil.php (100%) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 30f5fb5c6ad..06364814b45 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -23,7 +23,7 @@ You may fix many some of the issues with `vendor/bin/phpcbf`. Please try to add a test for your pull-request. * If you want to fix a bug or provide a reproduce case, create a test file in - ``tests/Doctrine/Tests/ORM/Functional/Ticket`` with the name of the ticket, + ``tests/Tests/ORM/Functional/Ticket`` with the name of the ticket, ``DDC1234Test.php`` for example. * If you want to contribute new functionality add unit- or functional tests depending on the scope of the feature. @@ -57,7 +57,7 @@ sqlite database. Tips for creating unit tests: 1. If you put a test into the `Ticket` namespace as described above, put the testcase and all entities into the same class. - See `https://github.com/doctrine/orm/tree/2.8.x/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2306Test.php` for an + See `https://github.com/doctrine/orm/tree/3.0.x/tests/Tests/ORM/Functional/Ticket/DDC2306Test.php` for an example. ## Getting merged diff --git a/UPGRADE.md b/UPGRADE.md index 8dcf4108a4a..5249576cbee 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -1901,7 +1901,7 @@ The EntityRepository now has an interface Doctrine\Persistence\ObjectRepository. The annotation reader was heavily refactored between 2.0 and 2.1-RC1. In theory the operation of the new reader should be backwards compatible, but it has to be setup differently to work that way: // new call to the AnnotationRegistry - \Doctrine\Common\Annotations\AnnotationRegistry::registerFile('/doctrine-src/lib/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php'); + \Doctrine\Common\Annotations\AnnotationRegistry::registerFile('/doctrine-src/src/Mapping/Driver/DoctrineAnnotations.php'); $reader = new \Doctrine\Common\Annotations\AnnotationReader(); $reader->setDefaultAnnotationNamespace('Doctrine\ORM\Mapping\\'); diff --git a/ci/github/phpunit/mysqli.xml b/ci/github/phpunit/mysqli.xml index a0cf8fa2682..23a44eb5fca 100644 --- a/ci/github/phpunit/mysqli.xml +++ b/ci/github/phpunit/mysqli.xml @@ -29,7 +29,7 @@ - ../../../lib/Doctrine + ../../../src diff --git a/ci/github/phpunit/pdo_mysql.xml b/ci/github/phpunit/pdo_mysql.xml index 701114bb471..1db2cd4fb06 100644 --- a/ci/github/phpunit/pdo_mysql.xml +++ b/ci/github/phpunit/pdo_mysql.xml @@ -29,7 +29,7 @@ - ../../../lib/Doctrine + ../../../src diff --git a/ci/github/phpunit/pdo_pgsql.xml b/ci/github/phpunit/pdo_pgsql.xml index 1152d90d7c3..53f270152b3 100644 --- a/ci/github/phpunit/pdo_pgsql.xml +++ b/ci/github/phpunit/pdo_pgsql.xml @@ -26,7 +26,7 @@ - ../../../lib/Doctrine + ../../../src diff --git a/ci/github/phpunit/pdo_sqlite.xml b/ci/github/phpunit/pdo_sqlite.xml index b21059c3910..385026dc732 100644 --- a/ci/github/phpunit/pdo_sqlite.xml +++ b/ci/github/phpunit/pdo_sqlite.xml @@ -24,7 +24,7 @@ - ../../../lib/Doctrine + ../../../src diff --git a/ci/github/phpunit/pgsql.xml b/ci/github/phpunit/pgsql.xml index 8425d03c1eb..58225decbe2 100644 --- a/ci/github/phpunit/pgsql.xml +++ b/ci/github/phpunit/pgsql.xml @@ -26,7 +26,7 @@ - ../../../lib/Doctrine + ../../../src diff --git a/ci/github/phpunit/sqlite3.xml b/ci/github/phpunit/sqlite3.xml index 29f1fcbe006..a4f313b2e81 100644 --- a/ci/github/phpunit/sqlite3.xml +++ b/ci/github/phpunit/sqlite3.xml @@ -24,7 +24,7 @@ - ../../../lib/Doctrine + ../../../src diff --git a/composer.json b/composer.json index d9b8937127f..c7ee4f9ec9f 100644 --- a/composer.json +++ b/composer.json @@ -51,13 +51,13 @@ "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0" }, "autoload": { - "psr-4": { "Doctrine\\ORM\\": "lib/Doctrine/ORM" } + "psr-4": { "Doctrine\\ORM\\": "src" } }, "autoload-dev": { "psr-4": { - "Doctrine\\Tests\\": "tests/Doctrine/Tests", - "Doctrine\\StaticAnalysis\\": "tests/Doctrine/StaticAnalysis", - "Doctrine\\Performance\\": "tests/Doctrine/Performance" + "Doctrine\\Tests\\": "tests/Tests", + "Doctrine\\StaticAnalysis\\": "tests/StaticAnalysis", + "Doctrine\\Performance\\": "tests/Performance" } }, "archive": { diff --git a/docs/en/reference/events.rst b/docs/en/reference/events.rst index 094f0bf717a..6f19876ea0e 100644 --- a/docs/en/reference/events.rst +++ b/docs/en/reference/events.rst @@ -1022,16 +1022,16 @@ and the EntityManager. } } -.. _PrePersistEventArgs: https://github.com/doctrine/orm/blob/HEAD/lib/Doctrine/ORM/Event/PrePersistEventArgs.php -.. _PreRemoveEventArgs: https://github.com/doctrine/orm/blob/HEAD/lib/Doctrine/ORM/Event/PreRemoveEventArgs.php -.. _PreUpdateEventArgs: https://github.com/doctrine/orm/blob/HEAD/lib/Doctrine/ORM/Event/PreUpdateEventArgs.php -.. _PostPersistEventArgs: https://github.com/doctrine/orm/blob/HEAD/lib/Doctrine/ORM/Event/PostPersistEventArgs.php -.. _PostRemoveEventArgs: https://github.com/doctrine/orm/blob/HEAD/lib/Doctrine/ORM/Event/PostRemoveEventArgs.php -.. _PostUpdateEventArgs: https://github.com/doctrine/orm/blob/HEAD/lib/Doctrine/ORM/Event/PostUpdateEventArgs.php -.. _PostLoadEventArgs: https://github.com/doctrine/orm/blob/HEAD/lib/Doctrine/ORM/Event/PostLoadEventArgs.php -.. _PreFlushEventArgs: https://github.com/doctrine/orm/blob/HEAD/lib/Doctrine/ORM/Event/PreFlushEventArgs.php -.. _PostFlushEventArgs: https://github.com/doctrine/orm/blob/HEAD/lib/Doctrine/ORM/Event/PostFlushEventArgs.php -.. _OnFlushEventArgs: https://github.com/doctrine/orm/blob/HEAD/lib/Doctrine/ORM/Event/OnFlushEventArgs.php -.. _OnClearEventArgs: https://github.com/doctrine/orm/blob/HEAD/lib/Doctrine/ORM/Event/OnClearEventArgs.php -.. _LoadClassMetadataEventArgs: https://github.com/doctrine/orm/blob/HEAD/lib/Doctrine/ORM/Event/LoadClassMetadataEventArgs.php -.. _OnClassMetadataNotFoundEventArgs: https://github.com/doctrine/orm/blob/HEAD/lib/Doctrine/ORM/Event/OnClassMetadataNotFoundEventArgs.php +.. _PrePersistEventArgs: https://github.com/doctrine/orm/blob/HEAD/src/Event/PrePersistEventArgs.php +.. _PreRemoveEventArgs: https://github.com/doctrine/orm/blob/HEAD/src/Event/PreRemoveEventArgs.php +.. _PreUpdateEventArgs: https://github.com/doctrine/orm/blob/HEAD/src/Event/PreUpdateEventArgs.php +.. _PostPersistEventArgs: https://github.com/doctrine/orm/blob/HEAD/src/Event/PostPersistEventArgs.php +.. _PostRemoveEventArgs: https://github.com/doctrine/orm/blob/HEAD/src/Event/PostRemoveEventArgs.php +.. _PostUpdateEventArgs: https://github.com/doctrine/orm/blob/HEAD/src/Event/PostUpdateEventArgs.php +.. _PostLoadEventArgs: https://github.com/doctrine/orm/blob/HEAD/src/Event/PostLoadEventArgs.php +.. _PreFlushEventArgs: https://github.com/doctrine/orm/blob/HEAD/src/Event/PreFlushEventArgs.php +.. _PostFlushEventArgs: https://github.com/doctrine/orm/blob/HEAD/src/Event/PostFlushEventArgs.php +.. _OnFlushEventArgs: https://github.com/doctrine/orm/blob/HEAD/src/Event/OnFlushEventArgs.php +.. _OnClearEventArgs: https://github.com/doctrine/orm/blob/HEAD/src/Event/OnClearEventArgs.php +.. _LoadClassMetadataEventArgs: https://github.com/doctrine/orm/blob/HEAD/src/Event/LoadClassMetadataEventArgs.php +.. _OnClassMetadataNotFoundEventArgs: https://github.com/doctrine/orm/blob/HEAD/src/Event/OnClassMetadataNotFoundEventArgs.php diff --git a/phpbench.json b/phpbench.json index 64989be5d6f..c6de1cebaaf 100644 --- a/phpbench.json +++ b/phpbench.json @@ -1,6 +1,6 @@ { - "runner.bootstrap": "tests/Doctrine/Tests/TestInit.php", - "runner.path": "tests/Doctrine/Performance", + "runner.bootstrap": "tests/Tests/TestInit.php", + "runner.path": "tests/Performance", "runner.file_pattern": "*Bench.php", "core.extensions": [ diff --git a/phpcs.xml.dist b/phpcs.xml.dist index 2327993ddf2..7ead84a96fa 100644 --- a/phpcs.xml.dist +++ b/phpcs.xml.dist @@ -11,12 +11,12 @@ - lib + src tests - */lib/Doctrine/ORM/Mapping/InverseJoinColumn.php - */tests/Doctrine/Tests/Proxies/__CG__* - */tests/Doctrine/Tests/ORM/Tools/Export/export/* + */src/Mapping/InverseJoinColumn.php + */tests/Tests/Proxies/__CG__* + */tests/Tests/ORM/Tools/Export/export/* @@ -28,16 +28,16 @@ - tests/Doctrine/Tests/Mocks/HydratorMockStatement.php - tests/Doctrine/Tests/Models/Cache/ComplexAction.php - tests/Doctrine/Tests/Models/DDC117/DDC117ArticleDetails.php - tests/Doctrine/Tests/Models/DDC117/DDC117Translation.php - tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2579Test.php - tests/Doctrine/Tests/ORM/Functional/ValueObjectsTest.php + tests/Tests/Mocks/HydratorMockStatement.php + tests/Tests/Models/Cache/ComplexAction.php + tests/Tests/Models/DDC117/DDC117ArticleDetails.php + tests/Tests/Models/DDC117/DDC117Translation.php + tests/Tests/ORM/Functional/Ticket/DDC2579Test.php + tests/Tests/ORM/Functional/ValueObjectsTest.php @@ -53,73 +53,73 @@ - lib/Doctrine/ORM/Tools/Console/Helper/EntityManagerHelper.php + src/Tools/Console/Helper/EntityManagerHelper.php tests/* - lib/Doctrine/ORM/Tools/Debug.php - tests/Doctrine/Tests/ORM/Tools/DebugTest.php + src/Tools/Debug.php + tests/Tests/ORM/Tools/DebugTest.php - lib/Doctrine/ORM/Events.php - lib/Doctrine/ORM/Tools/ToolEvents.php + src/Events.php + src/Tools/ToolEvents.php - lib/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php + src/Internal/Hydration/AbstractHydrator.php - lib/Doctrine/ORM/Query/Parser.php + src/Query/Parser.php - lib/Doctrine/ORM/Mapping/AssociationOverride.php - lib/Doctrine/ORM/Mapping/AssociationOverrides.php - lib/Doctrine/ORM/Mapping/AttributeOverride.php - lib/Doctrine/ORM/Mapping/AttributeOverrides.php - lib/Doctrine/ORM/Mapping/Cache.php - lib/Doctrine/ORM/Mapping/ChangeTrackingPolicy.php - lib/Doctrine/ORM/Mapping/Column.php - lib/Doctrine/ORM/Mapping/CustomIdGenerator.php - lib/Doctrine/ORM/Mapping/DiscriminatorColumn.php - lib/Doctrine/ORM/Mapping/DiscriminatorMap.php - lib/Doctrine/ORM/Mapping/Embeddable.php - lib/Doctrine/ORM/Mapping/Embedded.php - lib/Doctrine/ORM/Mapping/Entity.php - lib/Doctrine/ORM/Mapping/EntityListeners.php - lib/Doctrine/ORM/Mapping/GeneratedValue.php - lib/Doctrine/ORM/Mapping/HasLifecycleCallbacks.php - lib/Doctrine/ORM/Mapping/Id.php - lib/Doctrine/ORM/Mapping/Index.php - lib/Doctrine/ORM/Mapping/InheritanceType.php - lib/Doctrine/ORM/Mapping/JoinColumn.php - lib/Doctrine/ORM/Mapping/JoinColumns.php - lib/Doctrine/ORM/Mapping/JoinTable.php - lib/Doctrine/ORM/Mapping/ManyToMany.php - lib/Doctrine/ORM/Mapping/ManyToOne.php - lib/Doctrine/ORM/Mapping/MappedSuperclass.php - lib/Doctrine/ORM/Mapping/OneToMany.php - lib/Doctrine/ORM/Mapping/OneToOne.php - lib/Doctrine/ORM/Mapping/OrderBy.php - lib/Doctrine/ORM/Mapping/PostLoad.php - lib/Doctrine/ORM/Mapping/PostPersist.php - lib/Doctrine/ORM/Mapping/PostRemove.php - lib/Doctrine/ORM/Mapping/PostUpdate.php - lib/Doctrine/ORM/Mapping/PreFlush.php - lib/Doctrine/ORM/Mapping/PrePersist.php - lib/Doctrine/ORM/Mapping/PreRemove.php - lib/Doctrine/ORM/Mapping/PreUpdate.php - lib/Doctrine/ORM/Mapping/SequenceGenerator.php - lib/Doctrine/ORM/Mapping/Table.php - lib/Doctrine/ORM/Mapping/UniqueConstraint.php - lib/Doctrine/ORM/Mapping/Version.php + src/Mapping/AssociationOverride.php + src/Mapping/AssociationOverrides.php + src/Mapping/AttributeOverride.php + src/Mapping/AttributeOverrides.php + src/Mapping/Cache.php + src/Mapping/ChangeTrackingPolicy.php + src/Mapping/Column.php + src/Mapping/CustomIdGenerator.php + src/Mapping/DiscriminatorColumn.php + src/Mapping/DiscriminatorMap.php + src/Mapping/Embeddable.php + src/Mapping/Embedded.php + src/Mapping/Entity.php + src/Mapping/EntityListeners.php + src/Mapping/GeneratedValue.php + src/Mapping/HasLifecycleCallbacks.php + src/Mapping/Id.php + src/Mapping/Index.php + src/Mapping/InheritanceType.php + src/Mapping/JoinColumn.php + src/Mapping/JoinColumns.php + src/Mapping/JoinTable.php + src/Mapping/ManyToMany.php + src/Mapping/ManyToOne.php + src/Mapping/MappedSuperclass.php + src/Mapping/OneToMany.php + src/Mapping/OneToOne.php + src/Mapping/OrderBy.php + src/Mapping/PostLoad.php + src/Mapping/PostPersist.php + src/Mapping/PostRemove.php + src/Mapping/PostUpdate.php + src/Mapping/PreFlush.php + src/Mapping/PrePersist.php + src/Mapping/PreRemove.php + src/Mapping/PreUpdate.php + src/Mapping/SequenceGenerator.php + src/Mapping/Table.php + src/Mapping/UniqueConstraint.php + src/Mapping/Version.php - lib/Doctrine/ORM/Cache/DefaultQueryCache.php + src/Cache/DefaultQueryCache.php @@ -153,11 +153,11 @@ - lib/Doctrine/ORM/EntityManagerInterface.php + src/EntityManagerInterface.php - tests/Doctrine/Tests/Models/DDC1872/DDC1872ExampleTrait.php + tests/Tests/Models/DDC1872/DDC1872ExampleTrait.php @@ -178,25 +178,25 @@ - tests/Doctrine/Tests/Models/Global/GlobalNamespaceModel.php - tests/Doctrine/Tests/Models/DDC3231/DDC3231User1NoNamespace.php - tests/Doctrine/Tests/Models/DDC3231/DDC3231User2NoNamespace.php + tests/Tests/Models/Global/GlobalNamespaceModel.php + tests/Tests/Models/DDC3231/DDC3231User1NoNamespace.php + tests/Tests/Models/DDC3231/DDC3231User2NoNamespace.php - tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2084Test.php + tests/Tests/ORM/Functional/Ticket/DDC2084Test.php - tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2084Test.php + tests/Tests/ORM/Functional/Ticket/DDC2084Test.php - tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1301Test.php - tests/Doctrine/Tests/ORM/Functional/ExtraLazyCollectionTest.php + tests/Tests/ORM/Functional/Ticket/DDC1301Test.php + tests/Tests/ORM/Functional/ExtraLazyCollectionTest.php - tests/Doctrine/Tests/Models/DDC1590/DDC1590User.php + tests/Tests/Models/DDC1590/DDC1590User.php - tests/Doctrine/Tests/Proxy/DefaultProxyClassNameResolverTest.php + tests/Tests/Proxy/DefaultProxyClassNameResolverTest.php - tests/Doctrine/Tests/Mocks/DatabasePlatformMock.php - tests/Doctrine/Tests/Mocks/DriverMock.php - tests/Doctrine/Tests/ORM/UnitOfWorkTest.php - tests/Doctrine/Tests/ORM/Query/DeleteSqlGenerationTest.php + tests/Tests/Mocks/DatabasePlatformMock.php + tests/Tests/Mocks/DriverMock.php + tests/Tests/ORM/UnitOfWorkTest.php + tests/Tests/ORM/Query/DeleteSqlGenerationTest.php - lib/Doctrine/ORM/Query/AST/Node.php + src/Query/AST/Node.php - tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests* + tests/Tests/ORM/Mapping/php/Doctrine.Tests* - lib/Doctrine/ORM/AbstractQuery.php - lib/Doctrine/ORM/Mapping/ClassMetadata.php - lib/Doctrine/ORM/NativeQuery.php - lib/Doctrine/ORM/Query.php - lib/Doctrine/ORM/Query/TreeWalkerAdapter.php - lib/Doctrine/ORM/Tools/Export/Driver/AbstractExporter.php - lib/Doctrine/ORM/Tools/Export/Driver/PhpExporter.php + src/AbstractQuery.php + src/Mapping/ClassMetadata.php + src/NativeQuery.php + src/Query.php + src/Query/TreeWalkerAdapter.php + src/Tools/Export/Driver/AbstractExporter.php + src/Tools/Export/Driver/PhpExporter.php - tests/Doctrine/Tests/Mocks/DatabasePlatformMock.php - tests/Doctrine/Tests/Mocks/SchemaManagerMock.php - tests/Doctrine/Tests/ORM/AbstractQueryTest.php - tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3634Test.php + tests/Tests/Mocks/DatabasePlatformMock.php + tests/Tests/Mocks/SchemaManagerMock.php + tests/Tests/ORM/AbstractQueryTest.php + tests/Tests/ORM/Functional/Ticket/DDC3634Test.php - tests/Doctrine/Tests/OrmFunctionalTestCase.php + tests/Tests/OrmFunctionalTestCase.php - lib/Doctrine/ORM/Proxy/ProxyFactory.php + src/Proxy/ProxyFactory.php - tests/Doctrine/Tests/ORM/Functional/ProxiesLikeEntitiesTest.php + tests/Tests/ORM/Functional/ProxiesLikeEntitiesTest.php - tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1885Test.php - tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1843Test.php - tests/Doctrine/Tests/ORM/Mapping/ClassMetadataFactoryTest.php + tests/Tests/ORM/Functional/Ticket/DDC1885Test.php + tests/Tests/ORM/Functional/Ticket/DDC1843Test.php + tests/Tests/ORM/Mapping/ClassMetadataFactoryTest.php - lib/Doctrine/ORM/Id/TableGenerator.php + src/Id/TableGenerator.php - lib/Doctrine/ORM/Id/TableGenerator.php + src/Id/TableGenerator.php - lib/Doctrine/ORM/QueryBuilder.php + src/QueryBuilder.php diff --git a/phpstan-baseline.neon b/phpstan-baseline.neon index b7d3dfbb4a9..c1b0af26bfa 100644 --- a/phpstan-baseline.neon +++ b/phpstan-baseline.neon @@ -3,314 +3,314 @@ parameters: - message: "#^Call to an undefined method Doctrine\\\\ORM\\\\Persisters\\\\Entity\\\\EntityPersister\\:\\:getCacheRegion\\(\\)\\.$#" count: 1 - path: lib/Doctrine/ORM/Cache/DefaultEntityHydrator.php + path: src/Cache/DefaultEntityHydrator.php - message: "#^Access to an undefined property Doctrine\\\\ORM\\\\Cache\\\\CacheEntry\\:\\:\\$class\\.$#" count: 2 - path: lib/Doctrine/ORM/Cache/DefaultQueryCache.php + path: src/Cache/DefaultQueryCache.php - message: "#^Call to an undefined method Doctrine\\\\ORM\\\\Cache\\\\CacheEntry\\:\\:resolveAssociationEntries\\(\\)\\.$#" count: 2 - path: lib/Doctrine/ORM/Cache/DefaultQueryCache.php + path: src/Cache/DefaultQueryCache.php - message: "#^Call to an undefined method Doctrine\\\\ORM\\\\Persisters\\\\Entity\\\\EntityPersister\\:\\:getCacheRegion\\(\\)\\.$#" count: 1 - path: lib/Doctrine/ORM/Cache/DefaultQueryCache.php + path: src/Cache/DefaultQueryCache.php - message: "#^Call to an undefined method Doctrine\\\\ORM\\\\Persisters\\\\Entity\\\\EntityPersister\\:\\:storeEntityCache\\(\\)\\.$#" count: 2 - path: lib/Doctrine/ORM/Cache/DefaultQueryCache.php + path: src/Cache/DefaultQueryCache.php - message: "#^Parameter \\#2 \\$key of method Doctrine\\\\ORM\\\\Cache\\\\Logging\\\\CacheLogger\\:\\:entityCacheHit\\(\\) expects Doctrine\\\\ORM\\\\Cache\\\\EntityCacheKey, Doctrine\\\\ORM\\\\Cache\\\\CacheKey given\\.$#" count: 2 - path: lib/Doctrine/ORM/Cache/DefaultQueryCache.php + path: src/Cache/DefaultQueryCache.php - message: "#^Parameter \\#2 \\$key of method Doctrine\\\\ORM\\\\Cache\\\\Logging\\\\CacheLogger\\:\\:entityCacheMiss\\(\\) expects Doctrine\\\\ORM\\\\Cache\\\\EntityCacheKey, Doctrine\\\\ORM\\\\Cache\\\\CacheKey given\\.$#" count: 2 - path: lib/Doctrine/ORM/Cache/DefaultQueryCache.php + path: src/Cache/DefaultQueryCache.php - message: "#^Access to an undefined property Doctrine\\\\ORM\\\\Cache\\\\CacheEntry\\:\\:\\$identifiers\\.$#" count: 1 - path: lib/Doctrine/ORM/Cache/Persister/Collection/AbstractCollectionPersister.php + path: src/Cache/Persister/Collection/AbstractCollectionPersister.php - message: "#^Parameter \\#2 \\$key of method Doctrine\\\\ORM\\\\Cache\\\\EntityHydrator\\:\\:buildCacheEntry\\(\\) expects Doctrine\\\\ORM\\\\Cache\\\\EntityCacheKey, Doctrine\\\\ORM\\\\Cache\\\\CacheKey given\\.$#" count: 1 - path: lib/Doctrine/ORM/Cache/Persister/Collection/AbstractCollectionPersister.php + path: src/Cache/Persister/Collection/AbstractCollectionPersister.php - message: "#^Parameter \\#3 \\$entry of method Doctrine\\\\ORM\\\\Cache\\\\CollectionHydrator\\:\\:loadCacheEntry\\(\\) expects Doctrine\\\\ORM\\\\Cache\\\\CollectionCacheEntry, Doctrine\\\\ORM\\\\Cache\\\\CacheEntry given\\.$#" count: 1 - path: lib/Doctrine/ORM/Cache/Persister/Collection/AbstractCollectionPersister.php + path: src/Cache/Persister/Collection/AbstractCollectionPersister.php - message: "#^Call to an undefined method Doctrine\\\\ORM\\\\Cache\\\\Region\\:\\:lock\\(\\)\\.$#" count: 2 - path: lib/Doctrine/ORM/Cache/Persister/Collection/ReadWriteCachedCollectionPersister.php + path: src/Cache/Persister/Collection/ReadWriteCachedCollectionPersister.php - message: "#^Access to an undefined property Doctrine\\\\ORM\\\\Cache\\\\CacheEntry\\:\\:\\$class\\.$#" count: 2 - path: lib/Doctrine/ORM/Cache/Persister/Entity/AbstractEntityPersister.php + path: src/Cache/Persister/Entity/AbstractEntityPersister.php - message: "#^Call to an undefined method Doctrine\\\\ORM\\\\Cache\\\\Persister\\\\CachedPersister&Doctrine\\\\ORM\\\\Persisters\\\\Collection\\\\CollectionPersister\\:\\:loadCollectionCache\\(\\)\\.$#" count: 2 - path: lib/Doctrine/ORM/Cache/Persister/Entity/AbstractEntityPersister.php + path: src/Cache/Persister/Entity/AbstractEntityPersister.php - message: "#^Call to an undefined method Doctrine\\\\ORM\\\\Cache\\\\Persister\\\\CachedPersister&Doctrine\\\\ORM\\\\Persisters\\\\Collection\\\\CollectionPersister\\:\\:storeCollectionCache\\(\\)\\.$#" count: 2 - path: lib/Doctrine/ORM/Cache/Persister/Entity/AbstractEntityPersister.php + path: src/Cache/Persister/Entity/AbstractEntityPersister.php - message: "#^Call to an undefined method Doctrine\\\\ORM\\\\Persisters\\\\Entity\\\\EntityPersister\\:\\:storeEntityCache\\(\\)\\.$#" count: 1 - path: lib/Doctrine/ORM/Cache/Persister/Entity/AbstractEntityPersister.php + path: src/Cache/Persister/Entity/AbstractEntityPersister.php - message: "#^Parameter \\#3 \\$entry of method Doctrine\\\\ORM\\\\Cache\\\\EntityHydrator\\:\\:loadCacheEntry\\(\\) expects Doctrine\\\\ORM\\\\Cache\\\\EntityCacheEntry, Doctrine\\\\ORM\\\\Cache\\\\CacheEntry given\\.$#" count: 1 - path: lib/Doctrine/ORM/Cache/Persister/Entity/AbstractEntityPersister.php + path: src/Cache/Persister/Entity/AbstractEntityPersister.php - message: "#^Call to an undefined method Doctrine\\\\ORM\\\\Cache\\\\Region\\:\\:lock\\(\\)\\.$#" count: 2 - path: lib/Doctrine/ORM/Cache/Persister/Entity/ReadWriteCachedEntityPersister.php + path: src/Cache/Persister/Entity/ReadWriteCachedEntityPersister.php - message: "#^If condition is always true\\.$#" count: 1 - path: lib/Doctrine/ORM/Cache/Persister/Entity/ReadWriteCachedEntityPersister.php + path: src/Cache/Persister/Entity/ReadWriteCachedEntityPersister.php - message: "#^Access to an undefined property Doctrine\\\\ORM\\\\Cache\\\\CacheEntry\\:\\:\\$time\\.$#" count: 1 - path: lib/Doctrine/ORM/Cache/TimestampQueryCacheValidator.php + path: src/Cache/TimestampQueryCacheValidator.php - message: "#^Return type \\(Doctrine\\\\ORM\\\\Mapping\\\\ClassMetadataFactory\\) of method Doctrine\\\\ORM\\\\Decorator\\\\EntityManagerDecorator\\:\\:getMetadataFactory\\(\\) should be compatible with return type \\(Doctrine\\\\Persistence\\\\Mapping\\\\ClassMetadataFactory\\\\>\\) of method Doctrine\\\\Persistence\\\\ObjectManager\\:\\:getMetadataFactory\\(\\)$#" count: 1 - path: lib/Doctrine/ORM/Decorator/EntityManagerDecorator.php + path: src/Decorator/EntityManagerDecorator.php - message: "#^Return type \\(Doctrine\\\\ORM\\\\Mapping\\\\ClassMetadataFactory\\) of method Doctrine\\\\ORM\\\\Decorator\\\\EntityManagerDecorator\\:\\:getMetadataFactory\\(\\) should be compatible with return type \\(Doctrine\\\\Persistence\\\\Mapping\\\\ClassMetadataFactory\\\\>\\) of method Doctrine\\\\Persistence\\\\ObjectManagerDecorator\\\\:\\:getMetadataFactory\\(\\)$#" count: 1 - path: lib/Doctrine/ORM/Decorator/EntityManagerDecorator.php + path: src/Decorator/EntityManagerDecorator.php - message: "#^Return type \\(Doctrine\\\\ORM\\\\Mapping\\\\ClassMetadataFactory\\) of method Doctrine\\\\ORM\\\\EntityManager\\:\\:getMetadataFactory\\(\\) should be compatible with return type \\(Doctrine\\\\Persistence\\\\Mapping\\\\ClassMetadataFactory\\\\>\\) of method Doctrine\\\\Persistence\\\\ObjectManager\\:\\:getMetadataFactory\\(\\)$#" count: 1 - path: lib/Doctrine/ORM/EntityManager.php + path: src/EntityManager.php - message: "#^Return type \\(Doctrine\\\\ORM\\\\Mapping\\\\ClassMetadataFactory\\) of method Doctrine\\\\ORM\\\\EntityManagerInterface\\:\\:getMetadataFactory\\(\\) should be compatible with return type \\(Doctrine\\\\Persistence\\\\Mapping\\\\ClassMetadataFactory\\\\>\\) of method Doctrine\\\\Persistence\\\\ObjectManager\\:\\:getMetadataFactory\\(\\)$#" count: 1 - path: lib/Doctrine/ORM/EntityManagerInterface.php + path: src/EntityManagerInterface.php - message: "#^Template type T of method Doctrine\\\\ORM\\\\EntityManagerInterface\\:\\:getClassMetadata\\(\\) is not referenced in a parameter\\.$#" count: 1 - path: lib/Doctrine/ORM/EntityManagerInterface.php + path: src/EntityManagerInterface.php - message: "#^Method Doctrine\\\\ORM\\\\EntityRepository\\:\\:matching\\(\\) should return Doctrine\\\\Common\\\\Collections\\\\AbstractLazyCollection\\&Doctrine\\\\Common\\\\Collections\\\\Selectable\\ but returns Doctrine\\\\ORM\\\\LazyCriteriaCollection\\<\\(int\\|string\\), object\\>\\.$#" count: 1 - path: lib/Doctrine/ORM/EntityRepository.php + path: src/EntityRepository.php - message: "#^Method Doctrine\\\\ORM\\\\Mapping\\\\ClassMetadata\\:\\:fullyQualifiedClassName\\(\\) should return class\\-string\\|null but returns string\\|null\\.$#" count: 1 - path: lib/Doctrine/ORM/Mapping/ClassMetadata.php + path: src/Mapping/ClassMetadata.php - message: "#^If condition is always true\\.$#" count: 1 - path: lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php + path: src/Mapping/ClassMetadataFactory.php - message: "#^Method Doctrine\\\\ORM\\\\Mapping\\\\ToOneOwningSideMapping\\:\\:fromMappingArray\\(\\) should return static\\(Doctrine\\\\ORM\\\\Mapping\\\\ToOneOwningSideMapping\\) but returns Doctrine\\\\ORM\\\\Mapping\\\\ManyToOneAssociationMapping\\|Doctrine\\\\ORM\\\\Mapping\\\\OneToOneOwningSideMapping\\.$#" count: 1 - path: lib/Doctrine/ORM/Mapping/ToOneOwningSideMapping.php + path: src/Mapping/ToOneOwningSideMapping.php - message: "#^Method Doctrine\\\\ORM\\\\Mapping\\\\ToOneOwningSideMapping\\:\\:fromMappingArrayAndName\\(\\) should return static\\(Doctrine\\\\ORM\\\\Mapping\\\\ToOneOwningSideMapping\\) but returns Doctrine\\\\ORM\\\\Mapping\\\\ManyToOneAssociationMapping\\|Doctrine\\\\ORM\\\\Mapping\\\\OneToOneOwningSideMapping\\.$#" count: 1 - path: lib/Doctrine/ORM/Mapping/ToOneOwningSideMapping.php + path: src/Mapping/ToOneOwningSideMapping.php - message: "#^Call to function is_int\\(\\) with string will always evaluate to false\\.$#" count: 1 - path: lib/Doctrine/ORM/NativeQuery.php + path: src/NativeQuery.php - message: "#^Result of && is always false\\.$#" count: 1 - path: lib/Doctrine/ORM/NativeQuery.php + path: src/NativeQuery.php - message: "#^Parameter \\#3 \\$hints of method Doctrine\\\\ORM\\\\Internal\\\\Hydration\\\\AbstractHydrator\\:\\:hydrateAll\\(\\) expects array\\, array\\ given\\.$#" count: 1 - path: lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php + path: src/Persisters/Entity/BasicEntityPersister.php - message: "#^Parameter \\#3 \\$hints of method Doctrine\\\\ORM\\\\Internal\\\\Hydration\\\\AbstractHydrator\\:\\:hydrateAll\\(\\) expects array\\, array\\ given\\.$#" count: 4 - path: lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php + path: src/Persisters/Entity/BasicEntityPersister.php - message: "#^Strict comparison using \\=\\=\\= between string and null will always evaluate to false\\.$#" count: 1 - path: lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php + path: src/Persisters/Entity/BasicEntityPersister.php - message: "#^Access to an undefined property Doctrine\\\\Persistence\\\\Mapping\\\\ClassMetadata\\:\\:\\$isEmbeddedClass\\.$#" count: 1 - path: lib/Doctrine/ORM/Proxy/ProxyFactory.php + path: src/Proxy/ProxyFactory.php - message: "#^Access to an undefined property Doctrine\\\\Persistence\\\\Mapping\\\\ClassMetadata\\:\\:\\$isMappedSuperclass\\.$#" count: 1 - path: lib/Doctrine/ORM/Proxy/ProxyFactory.php + path: src/Proxy/ProxyFactory.php - message: "#^Call to an undefined static method Doctrine\\\\ORM\\\\Proxy\\\\ProxyFactory\\:\\:createLazyGhost\\(\\)\\.$#" count: 1 - path: lib/Doctrine/ORM/Proxy/ProxyFactory.php + path: src/Proxy/ProxyFactory.php - message: "#^Comparison operation \"\\<\" between 0\\|1\\|2\\|3\\|4 and 0 is always false\\.$#" count: 1 - path: lib/Doctrine/ORM/Proxy/ProxyFactory.php + path: src/Proxy/ProxyFactory.php - message: "#^Comparison operation \"\\>\" between 0\\|1\\|2\\|3\\|4 and 4 is always false\\.$#" count: 1 - path: lib/Doctrine/ORM/Proxy/ProxyFactory.php + path: src/Proxy/ProxyFactory.php - message: "#^Parameter \\#1 \\$class of method Doctrine\\\\ORM\\\\Utility\\\\IdentifierFlattener\\:\\:flattenIdentifier\\(\\) expects Doctrine\\\\ORM\\\\Mapping\\\\ClassMetadata, Doctrine\\\\Persistence\\\\Mapping\\\\ClassMetadata given\\.$#" count: 1 - path: lib/Doctrine/ORM/Proxy/ProxyFactory.php + path: src/Proxy/ProxyFactory.php - message: "#^Result of \\|\\| is always false\\.$#" count: 1 - path: lib/Doctrine/ORM/Proxy/ProxyFactory.php + path: src/Proxy/ProxyFactory.php - message: "#^Parameter \\#2 \\$sqlParams of method Doctrine\\\\ORM\\\\Query\\:\\:evictResultSetCache\\(\\) expects array\\, array\\ given\\.$#" count: 1 - path: lib/Doctrine/ORM/Query.php + path: src/Query.php - message: "#^Access to an undefined property Doctrine\\\\ORM\\\\Query\\\\AST\\\\Node\\:\\:\\$value\\.$#" count: 1 - path: lib/Doctrine/ORM/Query/AST/Functions/DateAddFunction.php + path: src/Query/AST/Functions/DateAddFunction.php - message: "#^Access to an undefined property Doctrine\\\\ORM\\\\Query\\\\AST\\\\Node\\:\\:\\$value\\.$#" count: 1 - path: lib/Doctrine/ORM/Query/AST/Functions/DateSubFunction.php + path: src/Query/AST/Functions/DateSubFunction.php - message: "#^Call to an undefined method Doctrine\\\\ORM\\\\Query\\\\SqlWalker\\:\\:walkJoinPathExpression\\(\\)\\.$#" count: 1 - path: lib/Doctrine/ORM/Query/AST/JoinClassPathExpression.php + path: src/Query/AST/JoinClassPathExpression.php - message: "#^Call to an undefined method Doctrine\\\\ORM\\\\Query\\\\SqlWalker\\:\\:walkJoinVariableDeclaration\\(\\)\\.$#" count: 1 - path: lib/Doctrine/ORM/Query/AST/JoinVariableDeclaration.php + path: src/Query/AST/JoinVariableDeclaration.php - message: "#^Call to an undefined method Doctrine\\\\ORM\\\\Query\\\\SqlWalker\\:\\:walkWhenClauseExpression\\(\\)\\.$#" count: 1 - path: lib/Doctrine/ORM/Query/AST/SimpleWhenClause.php + path: src/Query/AST/SimpleWhenClause.php - message: "#^Call to an undefined method Doctrine\\\\ORM\\\\Query\\\\SqlWalker\\:\\:walkWhenClauseExpression\\(\\)\\.$#" count: 1 - path: lib/Doctrine/ORM/Query/AST/WhenClause.php + path: src/Query/AST/WhenClause.php - message: "#^PHPDoc type array\\ of property Doctrine\\\\ORM\\\\Query\\\\Expr\\\\Andx\\:\\:\\$allowedClasses is not covariant with PHPDoc type array\\ of overridden property Doctrine\\\\ORM\\\\Query\\\\Expr\\\\Base\\:\\:\\$allowedClasses\\.$#" count: 1 - path: lib/Doctrine/ORM/Query/Expr/Andx.php + path: src/Query/Expr/Andx.php - message: "#^PHPDoc type array\\ of property Doctrine\\\\ORM\\\\Query\\\\Expr\\\\Orx\\:\\:\\$allowedClasses is not covariant with PHPDoc type array\\ of overridden property Doctrine\\\\ORM\\\\Query\\\\Expr\\\\Base\\:\\:\\$allowedClasses\\.$#" count: 1 - path: lib/Doctrine/ORM/Query/Expr/Orx.php + path: src/Query/Expr/Orx.php - message: "#^PHPDoc type array\\ of property Doctrine\\\\ORM\\\\Query\\\\Expr\\\\Select\\:\\:\\$allowedClasses is not covariant with PHPDoc type array\\ of overridden property Doctrine\\\\ORM\\\\Query\\\\Expr\\\\Base\\:\\:\\$allowedClasses\\.$#" count: 1 - path: lib/Doctrine/ORM/Query/Expr/Select.php + path: src/Query/Expr/Select.php - message: "#^Parameter \\#2 \\$stringPattern of class Doctrine\\\\ORM\\\\Query\\\\AST\\\\LikeExpression constructor expects Doctrine\\\\ORM\\\\Query\\\\AST\\\\Functions\\\\FunctionNode\\|Doctrine\\\\ORM\\\\Query\\\\AST\\\\InputParameter\\|Doctrine\\\\ORM\\\\Query\\\\AST\\\\Literal\\|Doctrine\\\\ORM\\\\Query\\\\AST\\\\PathExpression, Doctrine\\\\ORM\\\\Query\\\\AST\\\\Node given\\.$#" count: 1 - path: lib/Doctrine/ORM/Query/Parser.php + path: src/Query/Parser.php - message: "#^Unreachable statement \\- code above always terminates\\.$#" count: 2 - path: lib/Doctrine/ORM/Query/Parser.php + path: src/Query/Parser.php - message: "#^Match arm is unreachable because previous comparison is always true\\.$#" count: 1 - path: lib/Doctrine/ORM/Query/SqlWalker.php + path: src/Query/SqlWalker.php - message: "#^Parameter \\#1 \\$condTerm of method Doctrine\\\\ORM\\\\Query\\\\SqlWalker\\:\\:walkConditionalTerm\\(\\) expects Doctrine\\\\ORM\\\\Query\\\\AST\\\\ConditionalFactor\\|Doctrine\\\\ORM\\\\Query\\\\AST\\\\ConditionalPrimary\\|Doctrine\\\\ORM\\\\Query\\\\AST\\\\ConditionalTerm, Doctrine\\\\ORM\\\\Query\\\\AST\\\\Phase2OptimizableConditional given\\.$#" count: 1 - path: lib/Doctrine/ORM/Query/SqlWalker.php + path: src/Query/SqlWalker.php - message: "#^Parameter \\#2 \\$dqlPart of method Doctrine\\\\ORM\\\\QueryBuilder\\:\\:add\\(\\) expects array\\<'join'\\|int, array\\\\|string\\>\\|object\\|string, non\\-empty\\-array\\ given\\.$#" count: 2 - path: lib/Doctrine/ORM/QueryBuilder.php + path: src/QueryBuilder.php - message: "#^Access to an undefined property Doctrine\\\\Persistence\\\\Mapping\\\\ClassMetadata\\:\\:\\$name\\.$#" count: 1 - path: lib/Doctrine/ORM/Tools/Console/Command/GenerateProxiesCommand.php + path: src/Tools/Console/Command/GenerateProxiesCommand.php - message: "#^Parameter \\#1 \\$entityListeners of method Doctrine\\\\ORM\\\\Tools\\\\Console\\\\Command\\\\MappingDescribeCommand\\:\\:formatEntityListeners\\(\\) expects array\\, array\\\\>\\> given\\.$#" count: 1 - path: lib/Doctrine/ORM/Tools/Console/Command/MappingDescribeCommand.php + path: src/Tools/Console/Command/MappingDescribeCommand.php - message: "#^Else branch is unreachable because ternary operator condition is always true\\.$#" count: 1 - path: lib/Doctrine/ORM/Tools/SchemaTool.php + path: src/Tools/SchemaTool.php - message: "#^Negated boolean expression is always false\\.$#" count: 1 - path: lib/Doctrine/ORM/Tools/SchemaTool.php + path: src/Tools/SchemaTool.php - message: "#^Parameter \\#3 \\$changeSet of class Doctrine\\\\ORM\\\\Event\\\\PreUpdateEventArgs constructor is passed by reference, so it expects variables only$#" count: 1 - path: lib/Doctrine/ORM/UnitOfWork.php + path: src/UnitOfWork.php - message: "#^Access to an undefined property Doctrine\\\\Persistence\\\\Mapping\\\\ClassMetadata\\:\\:\\$name\\.$#" count: 1 - path: lib/Doctrine/ORM/Utility/HierarchyDiscriminatorResolver.php + path: src/Utility/HierarchyDiscriminatorResolver.php - message: "#^Access to an undefined property Doctrine\\\\Persistence\\\\Mapping\\\\ClassMetadata\\:\\:\\$subClasses\\.$#" count: 1 - path: lib/Doctrine/ORM/Utility/HierarchyDiscriminatorResolver.php + path: src/Utility/HierarchyDiscriminatorResolver.php diff --git a/phpstan-dbal3.neon b/phpstan-dbal3.neon index e771133101b..cb6fb45261c 100644 --- a/phpstan-dbal3.neon +++ b/phpstan-dbal3.neon @@ -10,19 +10,19 @@ parameters: # We can be certain that those values are not matched. - message: '~^Match expression does not handle remaining values:~' - path: lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php + path: src/Persisters/Entity/BasicEntityPersister.php # DBAL 4 compatibility - message: '~^Method Doctrine\\ORM\\Query\\AST\\Functions\\TrimFunction::getTrimMode\(\) never returns .* so it can be removed from the return type\.$~' - path: lib/Doctrine/ORM/Query/AST/Functions/TrimFunction.php + path: src/Query/AST/Functions/TrimFunction.php - message: '~^Method Doctrine\\ORM\\Persisters\\Entity\\BasicEntityPersister\:\:getArrayBindingType\(\) never returns .* so it can be removed from the return type\.$~' - path: lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php + path: src/Persisters/Entity/BasicEntityPersister.php - message: '~^Unreachable statement \- code above always terminates\.$~' - path: lib/Doctrine/ORM/Mapping/AssociationMapping.php + path: src/Mapping/AssociationMapping.php - '~^Class Doctrine\\DBAL\\Platforms\\SQLitePlatform not found\.$~' @@ -30,7 +30,7 @@ parameters: - message: '#Negated boolean expression is always false\.#' paths: - - lib/Doctrine/ORM/Mapping/Driver/AttributeDriver.php - - lib/Doctrine/ORM/Mapping/Driver/SimplifiedXmlDriver.php - - lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php - - lib/Doctrine/ORM/ORMSetup.php + - src/Mapping/Driver/AttributeDriver.php + - src/Mapping/Driver/SimplifiedXmlDriver.php + - src/Mapping/Driver/XmlDriver.php + - src/ORMSetup.php diff --git a/phpstan-params.neon b/phpstan-params.neon index 60abffb720f..a7d3556b84a 100644 --- a/phpstan-params.neon +++ b/phpstan-params.neon @@ -1,10 +1,10 @@ parameters: level: 5 paths: - - lib - - tests/Doctrine/StaticAnalysis + - src + - tests/StaticAnalysis excludePaths: - - lib/Doctrine/ORM/Mapping/Driver/AttributeReader.php + - src/Mapping/Driver/AttributeReader.php earlyTerminatingMethodCalls: Doctrine\ORM\Query\Parser: - syntaxError diff --git a/phpstan.neon b/phpstan.neon index 20d621ccdf9..90fda7be9f1 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -10,45 +10,45 @@ parameters: # We can be certain that those values are not matched. - message: '~^Match expression does not handle remaining values:~' - path: lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php + path: src/Persisters/Entity/BasicEntityPersister.php # DBAL 4 compatibility - message: '~^Method Doctrine\\ORM\\Query\\AST\\Functions\\TrimFunction::getTrimMode\(\) never returns .* so it can be removed from the return type\.$~' - path: lib/Doctrine/ORM/Query/AST/Functions/TrimFunction.php + path: src/Query/AST/Functions/TrimFunction.php - message: '~^Method Doctrine\\ORM\\Persisters\\Entity\\BasicEntityPersister\:\:getArrayBindingType\(\) never returns .* so it can be removed from the return type\.$~' - path: lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php + path: src/Persisters/Entity/BasicEntityPersister.php - message: '~^Unreachable statement \- code above always terminates\.$~' - path: lib/Doctrine/ORM/Mapping/AssociationMapping.php + path: src/Mapping/AssociationMapping.php # Compatibility with DBAL 3 # See https://github.com/doctrine/dbal/pull/3480 - message: '~^Result of method Doctrine\\DBAL\\Connection::commit\(\) \(void\) is used\.$~' - path: lib/Doctrine/ORM/UnitOfWork.php + path: src/UnitOfWork.php - message: '~^Strict comparison using === between void and false will always evaluate to false\.$~' - path: lib/Doctrine/ORM/UnitOfWork.php + path: src/UnitOfWork.php - message: '~^Variable \$e on left side of \?\? always exists and is not nullable\.$~' - path: lib/Doctrine/ORM/UnitOfWork.php + path: src/UnitOfWork.php - message: '~^Parameter #1 \$command of method Symfony\\Component\\Console\\Application::add\(\) expects Symfony\\Component\\Console\\Command\\Command, Doctrine\\DBAL\\Tools\\Console\\Command\\ReservedWordsCommand given\.$~' - path: lib/Doctrine/ORM/Tools/Console/ConsoleRunner.php + path: src/Tools/Console/ConsoleRunner.php - message: '~Strict comparison using \=\=\= between callable\(\)\: mixed and null will always evaluate to false\.~' - path: lib/Doctrine/ORM/Tools/SchemaTool.php + path: src/Tools/SchemaTool.php # To be removed in 4.0 - message: '#Negated boolean expression is always false\.#' paths: - - lib/Doctrine/ORM/Mapping/Driver/AttributeDriver.php - - lib/Doctrine/ORM/Mapping/Driver/SimplifiedXmlDriver.php - - lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php - - lib/Doctrine/ORM/ORMSetup.php + - src/Mapping/Driver/AttributeDriver.php + - src/Mapping/Driver/SimplifiedXmlDriver.php + - src/Mapping/Driver/XmlDriver.php + - src/ORMSetup.php diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 67776e6bb75..48d4a0f116f 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -19,12 +19,12 @@ failOnNotice="true" failOnWarning="true" failOnRisky="true" - bootstrap="./tests/Doctrine/Tests/TestInit.php" + bootstrap="./tests/Tests/TestInit.php" cacheDirectory=".phpunit.cache" > - ./tests/Doctrine/Tests/ORM + ./tests/Tests/ORM diff --git a/psalm-baseline.xml b/psalm-baseline.xml index 22df9a67070..23d3dbaa804 100644 --- a/psalm-baseline.xml +++ b/psalm-baseline.xml @@ -1,6 +1,6 @@ - + isEmpty() ? $filteredParameters->first() : null]]> @@ -20,12 +20,12 @@ getQueryCache - + getTimestampRegion - + getConfiguration() ->getSecondLevelCacheConfiguration() @@ -35,12 +35,12 @@ getCacheFactory - + getCacheRegion - + identifiers[$assocIndex]]]> identifiers[$assocIndex]]]> @@ -65,7 +65,7 @@ storeEntityCache - + $cache $entityKey @@ -81,18 +81,18 @@ getCacheFactory - + getOwner()]]> getOwner()]]> - + getOwner()]]> - + getOwner()]]> getOwner()]]> @@ -102,7 +102,7 @@ lock - + $cacheEntry @@ -135,7 +135,7 @@ storeEntityCache - + $isChanged @@ -144,17 +144,17 @@ lock - + time]]> - + $className - + wrapped->getClassMetadata($className)]]> @@ -162,7 +162,7 @@ ClassMetadata - + $className @@ -195,7 +195,7 @@ (string) $hydrationMode - + load($criteria, null, null, [], null, 1, $orderBy)]]> new LazyCriteriaCollection($persister, $criteria) @@ -211,18 +211,18 @@ ]]> - + $entity - + return $rowData; return $rowData; - + $index @@ -250,7 +250,7 @@ resultPointers[$dqlAlias] =& $coll[array_key_last($coll)]]]> - + $element @@ -277,7 +277,7 @@ - + $mapping @@ -285,17 +285,17 @@ static - + $repositoryClassName - + $class - + columnNames]]> columnNames]]> @@ -371,7 +371,7 @@ null - + $platformFamily @@ -406,7 +406,7 @@ $owningSide instanceof ManyToOneAssociationMapping) - + new $className() @@ -414,12 +414,12 @@ instances]]> - + - + $mapping @@ -430,7 +430,7 @@ array_merge(self::DEFAULT_TYPED_FIELD_MAPPINGS, $typedFieldMappings) - + $mapping name)]]> - + $metadata instanceof ClassMetadata @@ -493,13 +493,13 @@ getIndexes - + $fileExtension $prefixes - + $mapping @@ -560,17 +560,17 @@ getName() === 'mapped-superclass']]> - + ManyToManyInverseSideMapping - + $joinTable - + OneToManyAssociationMapping @@ -578,12 +578,12 @@ mappedBy)]]> - + OneToOneInverseSideMapping - + $object @@ -592,7 +592,7 @@ ReflectionEmbeddedProperty - + $object @@ -601,13 +601,13 @@ ReflectionEnumProperty - + ReflectionReadonlyProperty ReflectionReadonlyProperty - + $mapping @@ -615,7 +615,7 @@ static - + $instance $mapping @@ -625,17 +625,17 @@ static - + - + $sql - + ]]> @@ -666,7 +666,7 @@ unwrap(), 'add']]]> - + getOwner()]]> getOwner()]]> @@ -682,14 +682,14 @@ getFieldForColumn - + getOwner()]]> getOwner()]]> getOwner()]]> - + $value === null @@ -723,7 +723,7 @@ currentPersisterContext->sqlTableAliases]]> - + $autoloader @@ -737,7 +737,7 @@ require $file - + $className substr($className, $pos + Proxy::MARKER_LENGTH + 2) @@ -746,7 +746,7 @@ string - + $classMetadata @@ -782,7 +782,7 @@ require $fileName - + $sqlParams @@ -802,19 +802,19 @@ $parserResult - + ArithmeticPrimary()]]> ArithmeticPrimary()]]> - + ArithmeticPrimary()]]> ArithmeticPrimary()]]> - + ArithmeticPrimary()]]> ArithmeticPrimary()]]> @@ -823,48 +823,48 @@ unit->value]]> - + ArithmeticPrimary()]]> ArithmeticPrimary()]]> - + unit->value]]> - + $sqlWalker - + simpleArithmeticExpression]]> - + walkJoinPathExpression - + walkJoinVariableDeclaration - + walkWhenClauseExpression - + walkWhenClauseExpression - + $numDeleted @@ -881,7 +881,7 @@ sqlStatements]]> - + $paramTypes @@ -904,12 +904,12 @@ sqlStatements]]> - + sqlStatements]]> - + executeStatement($this->sqlStatements, $params, $types)]]> @@ -923,13 +923,13 @@ SingleTableDeleteUpdateExecutor - + $allowedClasses $parts - + arguments]]> @@ -937,39 +937,39 @@ ]]> - + $parts - + conditionType]]> - + $parts - + $allowedClasses $parts - + $allowedClasses $parts - + parameters]]> - + $stringPattern @@ -1018,7 +1018,7 @@ value === TokenType::T_IDENTIFIER->value]]> - + parameters)]]> @@ -1029,7 +1029,7 @@ Comparison::EQ - + throw QueryException::invalidLiteral($literal) @@ -1053,7 +1053,7 @@ dispatch - + $having $having @@ -1087,7 +1087,7 @@ $dqlPart - + repositoryList[$repositoryHash] ??= $this->createRepository($entityManager, $entityName)]]> @@ -1098,17 +1098,17 @@ new $repositoryClassName($entityManager, $metadata) - + evictAll - + evictAll - + name]]> @@ -1116,12 +1116,12 @@ getConfiguration()->getProxyDir()]]> - + getAllClassNames - + entityListeners]]> @@ -1129,13 +1129,13 @@ getAllClassNames - + $metadatas $metadatas - + $metadatas $metadatas @@ -1146,7 +1146,7 @@ getName()]]> - + $metadatas @@ -1155,7 +1155,7 @@ getName()]]> - + new ArrayIterator($metadatas) @@ -1163,12 +1163,12 @@ MetadataFilter - + $state === UnitOfWork::STATE_DETACHED - + @@ -1182,17 +1182,17 @@ orderByItems]]> - + $parameters - + $orderByClause - + $classes @@ -1209,7 +1209,7 @@ $indexName - + $collectionToDelete $collectionToUpdate @@ -1270,7 +1270,7 @@ $visited - + name]]> subClasses]]> diff --git a/psalm.xml b/psalm.xml index b2e7b723e42..6036c3a1017 100644 --- a/psalm.xml +++ b/psalm.xml @@ -11,11 +11,11 @@ errorBaseline="psalm-baseline.xml" > - - + + - + @@ -50,28 +50,28 @@ - + - + - - + + - + - - - + + + - + @@ -82,92 +82,92 @@ - + - + - + - + - + - + - + - + - - - + + + - + - + - + - + - - + + - + @@ -188,16 +188,16 @@ - + - - + + - - + + @@ -217,22 +217,22 @@ - - - - + + + + - + - + diff --git a/lib/Doctrine/ORM/AbstractQuery.php b/src/AbstractQuery.php similarity index 100% rename from lib/Doctrine/ORM/AbstractQuery.php rename to src/AbstractQuery.php diff --git a/lib/Doctrine/ORM/Cache.php b/src/Cache.php similarity index 100% rename from lib/Doctrine/ORM/Cache.php rename to src/Cache.php diff --git a/lib/Doctrine/ORM/Cache/AssociationCacheEntry.php b/src/Cache/AssociationCacheEntry.php similarity index 100% rename from lib/Doctrine/ORM/Cache/AssociationCacheEntry.php rename to src/Cache/AssociationCacheEntry.php diff --git a/lib/Doctrine/ORM/Cache/CacheConfiguration.php b/src/Cache/CacheConfiguration.php similarity index 100% rename from lib/Doctrine/ORM/Cache/CacheConfiguration.php rename to src/Cache/CacheConfiguration.php diff --git a/lib/Doctrine/ORM/Cache/CacheEntry.php b/src/Cache/CacheEntry.php similarity index 100% rename from lib/Doctrine/ORM/Cache/CacheEntry.php rename to src/Cache/CacheEntry.php diff --git a/lib/Doctrine/ORM/Cache/CacheException.php b/src/Cache/CacheException.php similarity index 100% rename from lib/Doctrine/ORM/Cache/CacheException.php rename to src/Cache/CacheException.php diff --git a/lib/Doctrine/ORM/Cache/CacheFactory.php b/src/Cache/CacheFactory.php similarity index 100% rename from lib/Doctrine/ORM/Cache/CacheFactory.php rename to src/Cache/CacheFactory.php diff --git a/lib/Doctrine/ORM/Cache/CacheKey.php b/src/Cache/CacheKey.php similarity index 100% rename from lib/Doctrine/ORM/Cache/CacheKey.php rename to src/Cache/CacheKey.php diff --git a/lib/Doctrine/ORM/Cache/CollectionCacheEntry.php b/src/Cache/CollectionCacheEntry.php similarity index 100% rename from lib/Doctrine/ORM/Cache/CollectionCacheEntry.php rename to src/Cache/CollectionCacheEntry.php diff --git a/lib/Doctrine/ORM/Cache/CollectionCacheKey.php b/src/Cache/CollectionCacheKey.php similarity index 100% rename from lib/Doctrine/ORM/Cache/CollectionCacheKey.php rename to src/Cache/CollectionCacheKey.php diff --git a/lib/Doctrine/ORM/Cache/CollectionHydrator.php b/src/Cache/CollectionHydrator.php similarity index 100% rename from lib/Doctrine/ORM/Cache/CollectionHydrator.php rename to src/Cache/CollectionHydrator.php diff --git a/lib/Doctrine/ORM/Cache/ConcurrentRegion.php b/src/Cache/ConcurrentRegion.php similarity index 100% rename from lib/Doctrine/ORM/Cache/ConcurrentRegion.php rename to src/Cache/ConcurrentRegion.php diff --git a/lib/Doctrine/ORM/Cache/DefaultCache.php b/src/Cache/DefaultCache.php similarity index 100% rename from lib/Doctrine/ORM/Cache/DefaultCache.php rename to src/Cache/DefaultCache.php diff --git a/lib/Doctrine/ORM/Cache/DefaultCacheFactory.php b/src/Cache/DefaultCacheFactory.php similarity index 100% rename from lib/Doctrine/ORM/Cache/DefaultCacheFactory.php rename to src/Cache/DefaultCacheFactory.php diff --git a/lib/Doctrine/ORM/Cache/DefaultCollectionHydrator.php b/src/Cache/DefaultCollectionHydrator.php similarity index 100% rename from lib/Doctrine/ORM/Cache/DefaultCollectionHydrator.php rename to src/Cache/DefaultCollectionHydrator.php diff --git a/lib/Doctrine/ORM/Cache/DefaultEntityHydrator.php b/src/Cache/DefaultEntityHydrator.php similarity index 100% rename from lib/Doctrine/ORM/Cache/DefaultEntityHydrator.php rename to src/Cache/DefaultEntityHydrator.php diff --git a/lib/Doctrine/ORM/Cache/DefaultQueryCache.php b/src/Cache/DefaultQueryCache.php similarity index 100% rename from lib/Doctrine/ORM/Cache/DefaultQueryCache.php rename to src/Cache/DefaultQueryCache.php diff --git a/lib/Doctrine/ORM/Cache/EntityCacheEntry.php b/src/Cache/EntityCacheEntry.php similarity index 100% rename from lib/Doctrine/ORM/Cache/EntityCacheEntry.php rename to src/Cache/EntityCacheEntry.php diff --git a/lib/Doctrine/ORM/Cache/EntityCacheKey.php b/src/Cache/EntityCacheKey.php similarity index 100% rename from lib/Doctrine/ORM/Cache/EntityCacheKey.php rename to src/Cache/EntityCacheKey.php diff --git a/lib/Doctrine/ORM/Cache/EntityHydrator.php b/src/Cache/EntityHydrator.php similarity index 100% rename from lib/Doctrine/ORM/Cache/EntityHydrator.php rename to src/Cache/EntityHydrator.php diff --git a/lib/Doctrine/ORM/Cache/Exception/CacheException.php b/src/Cache/Exception/CacheException.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Exception/CacheException.php rename to src/Cache/Exception/CacheException.php diff --git a/lib/Doctrine/ORM/Cache/Exception/CannotUpdateReadOnlyCollection.php b/src/Cache/Exception/CannotUpdateReadOnlyCollection.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Exception/CannotUpdateReadOnlyCollection.php rename to src/Cache/Exception/CannotUpdateReadOnlyCollection.php diff --git a/lib/Doctrine/ORM/Cache/Exception/CannotUpdateReadOnlyEntity.php b/src/Cache/Exception/CannotUpdateReadOnlyEntity.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Exception/CannotUpdateReadOnlyEntity.php rename to src/Cache/Exception/CannotUpdateReadOnlyEntity.php diff --git a/lib/Doctrine/ORM/Cache/Exception/FeatureNotImplemented.php b/src/Cache/Exception/FeatureNotImplemented.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Exception/FeatureNotImplemented.php rename to src/Cache/Exception/FeatureNotImplemented.php diff --git a/lib/Doctrine/ORM/Cache/Exception/NonCacheableEntity.php b/src/Cache/Exception/NonCacheableEntity.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Exception/NonCacheableEntity.php rename to src/Cache/Exception/NonCacheableEntity.php diff --git a/lib/Doctrine/ORM/Cache/Exception/NonCacheableEntityAssociation.php b/src/Cache/Exception/NonCacheableEntityAssociation.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Exception/NonCacheableEntityAssociation.php rename to src/Cache/Exception/NonCacheableEntityAssociation.php diff --git a/lib/Doctrine/ORM/Cache/Lock.php b/src/Cache/Lock.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Lock.php rename to src/Cache/Lock.php diff --git a/lib/Doctrine/ORM/Cache/LockException.php b/src/Cache/LockException.php similarity index 100% rename from lib/Doctrine/ORM/Cache/LockException.php rename to src/Cache/LockException.php diff --git a/lib/Doctrine/ORM/Cache/Logging/CacheLogger.php b/src/Cache/Logging/CacheLogger.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Logging/CacheLogger.php rename to src/Cache/Logging/CacheLogger.php diff --git a/lib/Doctrine/ORM/Cache/Logging/CacheLoggerChain.php b/src/Cache/Logging/CacheLoggerChain.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Logging/CacheLoggerChain.php rename to src/Cache/Logging/CacheLoggerChain.php diff --git a/lib/Doctrine/ORM/Cache/Logging/StatisticsCacheLogger.php b/src/Cache/Logging/StatisticsCacheLogger.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Logging/StatisticsCacheLogger.php rename to src/Cache/Logging/StatisticsCacheLogger.php diff --git a/lib/Doctrine/ORM/Cache/Persister/CachedPersister.php b/src/Cache/Persister/CachedPersister.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Persister/CachedPersister.php rename to src/Cache/Persister/CachedPersister.php diff --git a/lib/Doctrine/ORM/Cache/Persister/Collection/AbstractCollectionPersister.php b/src/Cache/Persister/Collection/AbstractCollectionPersister.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Persister/Collection/AbstractCollectionPersister.php rename to src/Cache/Persister/Collection/AbstractCollectionPersister.php diff --git a/lib/Doctrine/ORM/Cache/Persister/Collection/CachedCollectionPersister.php b/src/Cache/Persister/Collection/CachedCollectionPersister.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Persister/Collection/CachedCollectionPersister.php rename to src/Cache/Persister/Collection/CachedCollectionPersister.php diff --git a/lib/Doctrine/ORM/Cache/Persister/Collection/NonStrictReadWriteCachedCollectionPersister.php b/src/Cache/Persister/Collection/NonStrictReadWriteCachedCollectionPersister.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Persister/Collection/NonStrictReadWriteCachedCollectionPersister.php rename to src/Cache/Persister/Collection/NonStrictReadWriteCachedCollectionPersister.php diff --git a/lib/Doctrine/ORM/Cache/Persister/Collection/ReadOnlyCachedCollectionPersister.php b/src/Cache/Persister/Collection/ReadOnlyCachedCollectionPersister.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Persister/Collection/ReadOnlyCachedCollectionPersister.php rename to src/Cache/Persister/Collection/ReadOnlyCachedCollectionPersister.php diff --git a/lib/Doctrine/ORM/Cache/Persister/Collection/ReadWriteCachedCollectionPersister.php b/src/Cache/Persister/Collection/ReadWriteCachedCollectionPersister.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Persister/Collection/ReadWriteCachedCollectionPersister.php rename to src/Cache/Persister/Collection/ReadWriteCachedCollectionPersister.php diff --git a/lib/Doctrine/ORM/Cache/Persister/Entity/AbstractEntityPersister.php b/src/Cache/Persister/Entity/AbstractEntityPersister.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Persister/Entity/AbstractEntityPersister.php rename to src/Cache/Persister/Entity/AbstractEntityPersister.php diff --git a/lib/Doctrine/ORM/Cache/Persister/Entity/CachedEntityPersister.php b/src/Cache/Persister/Entity/CachedEntityPersister.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Persister/Entity/CachedEntityPersister.php rename to src/Cache/Persister/Entity/CachedEntityPersister.php diff --git a/lib/Doctrine/ORM/Cache/Persister/Entity/NonStrictReadWriteCachedEntityPersister.php b/src/Cache/Persister/Entity/NonStrictReadWriteCachedEntityPersister.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Persister/Entity/NonStrictReadWriteCachedEntityPersister.php rename to src/Cache/Persister/Entity/NonStrictReadWriteCachedEntityPersister.php diff --git a/lib/Doctrine/ORM/Cache/Persister/Entity/ReadOnlyCachedEntityPersister.php b/src/Cache/Persister/Entity/ReadOnlyCachedEntityPersister.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Persister/Entity/ReadOnlyCachedEntityPersister.php rename to src/Cache/Persister/Entity/ReadOnlyCachedEntityPersister.php diff --git a/lib/Doctrine/ORM/Cache/Persister/Entity/ReadWriteCachedEntityPersister.php b/src/Cache/Persister/Entity/ReadWriteCachedEntityPersister.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Persister/Entity/ReadWriteCachedEntityPersister.php rename to src/Cache/Persister/Entity/ReadWriteCachedEntityPersister.php diff --git a/lib/Doctrine/ORM/Cache/QueryCache.php b/src/Cache/QueryCache.php similarity index 100% rename from lib/Doctrine/ORM/Cache/QueryCache.php rename to src/Cache/QueryCache.php diff --git a/lib/Doctrine/ORM/Cache/QueryCacheEntry.php b/src/Cache/QueryCacheEntry.php similarity index 100% rename from lib/Doctrine/ORM/Cache/QueryCacheEntry.php rename to src/Cache/QueryCacheEntry.php diff --git a/lib/Doctrine/ORM/Cache/QueryCacheKey.php b/src/Cache/QueryCacheKey.php similarity index 100% rename from lib/Doctrine/ORM/Cache/QueryCacheKey.php rename to src/Cache/QueryCacheKey.php diff --git a/lib/Doctrine/ORM/Cache/QueryCacheValidator.php b/src/Cache/QueryCacheValidator.php similarity index 100% rename from lib/Doctrine/ORM/Cache/QueryCacheValidator.php rename to src/Cache/QueryCacheValidator.php diff --git a/lib/Doctrine/ORM/Cache/Region.php b/src/Cache/Region.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Region.php rename to src/Cache/Region.php diff --git a/lib/Doctrine/ORM/Cache/Region/DefaultRegion.php b/src/Cache/Region/DefaultRegion.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Region/DefaultRegion.php rename to src/Cache/Region/DefaultRegion.php diff --git a/lib/Doctrine/ORM/Cache/Region/FileLockRegion.php b/src/Cache/Region/FileLockRegion.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Region/FileLockRegion.php rename to src/Cache/Region/FileLockRegion.php diff --git a/lib/Doctrine/ORM/Cache/Region/UpdateTimestampCache.php b/src/Cache/Region/UpdateTimestampCache.php similarity index 100% rename from lib/Doctrine/ORM/Cache/Region/UpdateTimestampCache.php rename to src/Cache/Region/UpdateTimestampCache.php diff --git a/lib/Doctrine/ORM/Cache/RegionsConfiguration.php b/src/Cache/RegionsConfiguration.php similarity index 100% rename from lib/Doctrine/ORM/Cache/RegionsConfiguration.php rename to src/Cache/RegionsConfiguration.php diff --git a/lib/Doctrine/ORM/Cache/TimestampCacheEntry.php b/src/Cache/TimestampCacheEntry.php similarity index 100% rename from lib/Doctrine/ORM/Cache/TimestampCacheEntry.php rename to src/Cache/TimestampCacheEntry.php diff --git a/lib/Doctrine/ORM/Cache/TimestampCacheKey.php b/src/Cache/TimestampCacheKey.php similarity index 100% rename from lib/Doctrine/ORM/Cache/TimestampCacheKey.php rename to src/Cache/TimestampCacheKey.php diff --git a/lib/Doctrine/ORM/Cache/TimestampQueryCacheValidator.php b/src/Cache/TimestampQueryCacheValidator.php similarity index 100% rename from lib/Doctrine/ORM/Cache/TimestampQueryCacheValidator.php rename to src/Cache/TimestampQueryCacheValidator.php diff --git a/lib/Doctrine/ORM/Cache/TimestampRegion.php b/src/Cache/TimestampRegion.php similarity index 100% rename from lib/Doctrine/ORM/Cache/TimestampRegion.php rename to src/Cache/TimestampRegion.php diff --git a/lib/Doctrine/ORM/Configuration.php b/src/Configuration.php similarity index 100% rename from lib/Doctrine/ORM/Configuration.php rename to src/Configuration.php diff --git a/lib/Doctrine/ORM/Decorator/EntityManagerDecorator.php b/src/Decorator/EntityManagerDecorator.php similarity index 100% rename from lib/Doctrine/ORM/Decorator/EntityManagerDecorator.php rename to src/Decorator/EntityManagerDecorator.php diff --git a/lib/Doctrine/ORM/EntityManager.php b/src/EntityManager.php similarity index 100% rename from lib/Doctrine/ORM/EntityManager.php rename to src/EntityManager.php diff --git a/lib/Doctrine/ORM/EntityManagerInterface.php b/src/EntityManagerInterface.php similarity index 100% rename from lib/Doctrine/ORM/EntityManagerInterface.php rename to src/EntityManagerInterface.php diff --git a/lib/Doctrine/ORM/EntityNotFoundException.php b/src/EntityNotFoundException.php similarity index 100% rename from lib/Doctrine/ORM/EntityNotFoundException.php rename to src/EntityNotFoundException.php diff --git a/lib/Doctrine/ORM/EntityRepository.php b/src/EntityRepository.php similarity index 100% rename from lib/Doctrine/ORM/EntityRepository.php rename to src/EntityRepository.php diff --git a/lib/Doctrine/ORM/Event/ListenersInvoker.php b/src/Event/ListenersInvoker.php similarity index 100% rename from lib/Doctrine/ORM/Event/ListenersInvoker.php rename to src/Event/ListenersInvoker.php diff --git a/lib/Doctrine/ORM/Event/LoadClassMetadataEventArgs.php b/src/Event/LoadClassMetadataEventArgs.php similarity index 100% rename from lib/Doctrine/ORM/Event/LoadClassMetadataEventArgs.php rename to src/Event/LoadClassMetadataEventArgs.php diff --git a/lib/Doctrine/ORM/Event/OnClassMetadataNotFoundEventArgs.php b/src/Event/OnClassMetadataNotFoundEventArgs.php similarity index 100% rename from lib/Doctrine/ORM/Event/OnClassMetadataNotFoundEventArgs.php rename to src/Event/OnClassMetadataNotFoundEventArgs.php diff --git a/lib/Doctrine/ORM/Event/OnClearEventArgs.php b/src/Event/OnClearEventArgs.php similarity index 100% rename from lib/Doctrine/ORM/Event/OnClearEventArgs.php rename to src/Event/OnClearEventArgs.php diff --git a/lib/Doctrine/ORM/Event/OnFlushEventArgs.php b/src/Event/OnFlushEventArgs.php similarity index 100% rename from lib/Doctrine/ORM/Event/OnFlushEventArgs.php rename to src/Event/OnFlushEventArgs.php diff --git a/lib/Doctrine/ORM/Event/PostFlushEventArgs.php b/src/Event/PostFlushEventArgs.php similarity index 100% rename from lib/Doctrine/ORM/Event/PostFlushEventArgs.php rename to src/Event/PostFlushEventArgs.php diff --git a/lib/Doctrine/ORM/Event/PostLoadEventArgs.php b/src/Event/PostLoadEventArgs.php similarity index 100% rename from lib/Doctrine/ORM/Event/PostLoadEventArgs.php rename to src/Event/PostLoadEventArgs.php diff --git a/lib/Doctrine/ORM/Event/PostPersistEventArgs.php b/src/Event/PostPersistEventArgs.php similarity index 100% rename from lib/Doctrine/ORM/Event/PostPersistEventArgs.php rename to src/Event/PostPersistEventArgs.php diff --git a/lib/Doctrine/ORM/Event/PostRemoveEventArgs.php b/src/Event/PostRemoveEventArgs.php similarity index 100% rename from lib/Doctrine/ORM/Event/PostRemoveEventArgs.php rename to src/Event/PostRemoveEventArgs.php diff --git a/lib/Doctrine/ORM/Event/PostUpdateEventArgs.php b/src/Event/PostUpdateEventArgs.php similarity index 100% rename from lib/Doctrine/ORM/Event/PostUpdateEventArgs.php rename to src/Event/PostUpdateEventArgs.php diff --git a/lib/Doctrine/ORM/Event/PreFlushEventArgs.php b/src/Event/PreFlushEventArgs.php similarity index 100% rename from lib/Doctrine/ORM/Event/PreFlushEventArgs.php rename to src/Event/PreFlushEventArgs.php diff --git a/lib/Doctrine/ORM/Event/PrePersistEventArgs.php b/src/Event/PrePersistEventArgs.php similarity index 100% rename from lib/Doctrine/ORM/Event/PrePersistEventArgs.php rename to src/Event/PrePersistEventArgs.php diff --git a/lib/Doctrine/ORM/Event/PreRemoveEventArgs.php b/src/Event/PreRemoveEventArgs.php similarity index 100% rename from lib/Doctrine/ORM/Event/PreRemoveEventArgs.php rename to src/Event/PreRemoveEventArgs.php diff --git a/lib/Doctrine/ORM/Event/PreUpdateEventArgs.php b/src/Event/PreUpdateEventArgs.php similarity index 100% rename from lib/Doctrine/ORM/Event/PreUpdateEventArgs.php rename to src/Event/PreUpdateEventArgs.php diff --git a/lib/Doctrine/ORM/Events.php b/src/Events.php similarity index 100% rename from lib/Doctrine/ORM/Events.php rename to src/Events.php diff --git a/lib/Doctrine/ORM/Exception/ConfigurationException.php b/src/Exception/ConfigurationException.php similarity index 100% rename from lib/Doctrine/ORM/Exception/ConfigurationException.php rename to src/Exception/ConfigurationException.php diff --git a/lib/Doctrine/ORM/Exception/EntityIdentityCollisionException.php b/src/Exception/EntityIdentityCollisionException.php similarity index 100% rename from lib/Doctrine/ORM/Exception/EntityIdentityCollisionException.php rename to src/Exception/EntityIdentityCollisionException.php diff --git a/lib/Doctrine/ORM/Exception/EntityManagerClosed.php b/src/Exception/EntityManagerClosed.php similarity index 100% rename from lib/Doctrine/ORM/Exception/EntityManagerClosed.php rename to src/Exception/EntityManagerClosed.php diff --git a/lib/Doctrine/ORM/Exception/EntityMissingAssignedId.php b/src/Exception/EntityMissingAssignedId.php similarity index 100% rename from lib/Doctrine/ORM/Exception/EntityMissingAssignedId.php rename to src/Exception/EntityMissingAssignedId.php diff --git a/lib/Doctrine/ORM/Exception/InvalidEntityRepository.php b/src/Exception/InvalidEntityRepository.php similarity index 100% rename from lib/Doctrine/ORM/Exception/InvalidEntityRepository.php rename to src/Exception/InvalidEntityRepository.php diff --git a/lib/Doctrine/ORM/Exception/InvalidHydrationMode.php b/src/Exception/InvalidHydrationMode.php similarity index 100% rename from lib/Doctrine/ORM/Exception/InvalidHydrationMode.php rename to src/Exception/InvalidHydrationMode.php diff --git a/lib/Doctrine/ORM/Exception/ManagerException.php b/src/Exception/ManagerException.php similarity index 100% rename from lib/Doctrine/ORM/Exception/ManagerException.php rename to src/Exception/ManagerException.php diff --git a/lib/Doctrine/ORM/Exception/MissingIdentifierField.php b/src/Exception/MissingIdentifierField.php similarity index 100% rename from lib/Doctrine/ORM/Exception/MissingIdentifierField.php rename to src/Exception/MissingIdentifierField.php diff --git a/lib/Doctrine/ORM/Exception/MissingMappingDriverImplementation.php b/src/Exception/MissingMappingDriverImplementation.php similarity index 100% rename from lib/Doctrine/ORM/Exception/MissingMappingDriverImplementation.php rename to src/Exception/MissingMappingDriverImplementation.php diff --git a/lib/Doctrine/ORM/Exception/MultipleSelectorsFoundException.php b/src/Exception/MultipleSelectorsFoundException.php similarity index 100% rename from lib/Doctrine/ORM/Exception/MultipleSelectorsFoundException.php rename to src/Exception/MultipleSelectorsFoundException.php diff --git a/lib/Doctrine/ORM/Exception/NotSupported.php b/src/Exception/NotSupported.php similarity index 100% rename from lib/Doctrine/ORM/Exception/NotSupported.php rename to src/Exception/NotSupported.php diff --git a/lib/Doctrine/ORM/Exception/ORMException.php b/src/Exception/ORMException.php similarity index 100% rename from lib/Doctrine/ORM/Exception/ORMException.php rename to src/Exception/ORMException.php diff --git a/lib/Doctrine/ORM/Exception/PersisterException.php b/src/Exception/PersisterException.php similarity index 100% rename from lib/Doctrine/ORM/Exception/PersisterException.php rename to src/Exception/PersisterException.php diff --git a/lib/Doctrine/ORM/Exception/RepositoryException.php b/src/Exception/RepositoryException.php similarity index 100% rename from lib/Doctrine/ORM/Exception/RepositoryException.php rename to src/Exception/RepositoryException.php diff --git a/lib/Doctrine/ORM/Exception/SchemaToolException.php b/src/Exception/SchemaToolException.php similarity index 100% rename from lib/Doctrine/ORM/Exception/SchemaToolException.php rename to src/Exception/SchemaToolException.php diff --git a/lib/Doctrine/ORM/Exception/UnexpectedAssociationValue.php b/src/Exception/UnexpectedAssociationValue.php similarity index 100% rename from lib/Doctrine/ORM/Exception/UnexpectedAssociationValue.php rename to src/Exception/UnexpectedAssociationValue.php diff --git a/lib/Doctrine/ORM/Exception/UnrecognizedIdentifierFields.php b/src/Exception/UnrecognizedIdentifierFields.php similarity index 100% rename from lib/Doctrine/ORM/Exception/UnrecognizedIdentifierFields.php rename to src/Exception/UnrecognizedIdentifierFields.php diff --git a/lib/Doctrine/ORM/Id/AbstractIdGenerator.php b/src/Id/AbstractIdGenerator.php similarity index 100% rename from lib/Doctrine/ORM/Id/AbstractIdGenerator.php rename to src/Id/AbstractIdGenerator.php diff --git a/lib/Doctrine/ORM/Id/AssignedGenerator.php b/src/Id/AssignedGenerator.php similarity index 100% rename from lib/Doctrine/ORM/Id/AssignedGenerator.php rename to src/Id/AssignedGenerator.php diff --git a/lib/Doctrine/ORM/Id/BigIntegerIdentityGenerator.php b/src/Id/BigIntegerIdentityGenerator.php similarity index 100% rename from lib/Doctrine/ORM/Id/BigIntegerIdentityGenerator.php rename to src/Id/BigIntegerIdentityGenerator.php diff --git a/lib/Doctrine/ORM/Id/IdentityGenerator.php b/src/Id/IdentityGenerator.php similarity index 100% rename from lib/Doctrine/ORM/Id/IdentityGenerator.php rename to src/Id/IdentityGenerator.php diff --git a/lib/Doctrine/ORM/Id/SequenceGenerator.php b/src/Id/SequenceGenerator.php similarity index 100% rename from lib/Doctrine/ORM/Id/SequenceGenerator.php rename to src/Id/SequenceGenerator.php diff --git a/lib/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php b/src/Internal/Hydration/AbstractHydrator.php similarity index 100% rename from lib/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php rename to src/Internal/Hydration/AbstractHydrator.php diff --git a/lib/Doctrine/ORM/Internal/Hydration/ArrayHydrator.php b/src/Internal/Hydration/ArrayHydrator.php similarity index 100% rename from lib/Doctrine/ORM/Internal/Hydration/ArrayHydrator.php rename to src/Internal/Hydration/ArrayHydrator.php diff --git a/lib/Doctrine/ORM/Internal/Hydration/HydrationException.php b/src/Internal/Hydration/HydrationException.php similarity index 100% rename from lib/Doctrine/ORM/Internal/Hydration/HydrationException.php rename to src/Internal/Hydration/HydrationException.php diff --git a/lib/Doctrine/ORM/Internal/Hydration/ObjectHydrator.php b/src/Internal/Hydration/ObjectHydrator.php similarity index 100% rename from lib/Doctrine/ORM/Internal/Hydration/ObjectHydrator.php rename to src/Internal/Hydration/ObjectHydrator.php diff --git a/lib/Doctrine/ORM/Internal/Hydration/ScalarColumnHydrator.php b/src/Internal/Hydration/ScalarColumnHydrator.php similarity index 100% rename from lib/Doctrine/ORM/Internal/Hydration/ScalarColumnHydrator.php rename to src/Internal/Hydration/ScalarColumnHydrator.php diff --git a/lib/Doctrine/ORM/Internal/Hydration/ScalarHydrator.php b/src/Internal/Hydration/ScalarHydrator.php similarity index 100% rename from lib/Doctrine/ORM/Internal/Hydration/ScalarHydrator.php rename to src/Internal/Hydration/ScalarHydrator.php diff --git a/lib/Doctrine/ORM/Internal/Hydration/SimpleObjectHydrator.php b/src/Internal/Hydration/SimpleObjectHydrator.php similarity index 100% rename from lib/Doctrine/ORM/Internal/Hydration/SimpleObjectHydrator.php rename to src/Internal/Hydration/SimpleObjectHydrator.php diff --git a/lib/Doctrine/ORM/Internal/Hydration/SingleScalarHydrator.php b/src/Internal/Hydration/SingleScalarHydrator.php similarity index 100% rename from lib/Doctrine/ORM/Internal/Hydration/SingleScalarHydrator.php rename to src/Internal/Hydration/SingleScalarHydrator.php diff --git a/lib/Doctrine/ORM/Internal/HydrationCompleteHandler.php b/src/Internal/HydrationCompleteHandler.php similarity index 100% rename from lib/Doctrine/ORM/Internal/HydrationCompleteHandler.php rename to src/Internal/HydrationCompleteHandler.php diff --git a/lib/Doctrine/ORM/Internal/QueryType.php b/src/Internal/QueryType.php similarity index 100% rename from lib/Doctrine/ORM/Internal/QueryType.php rename to src/Internal/QueryType.php diff --git a/lib/Doctrine/ORM/Internal/SQLResultCasing.php b/src/Internal/SQLResultCasing.php similarity index 100% rename from lib/Doctrine/ORM/Internal/SQLResultCasing.php rename to src/Internal/SQLResultCasing.php diff --git a/lib/Doctrine/ORM/Internal/TopologicalSort.php b/src/Internal/TopologicalSort.php similarity index 100% rename from lib/Doctrine/ORM/Internal/TopologicalSort.php rename to src/Internal/TopologicalSort.php diff --git a/lib/Doctrine/ORM/Internal/TopologicalSort/CycleDetectedException.php b/src/Internal/TopologicalSort/CycleDetectedException.php similarity index 100% rename from lib/Doctrine/ORM/Internal/TopologicalSort/CycleDetectedException.php rename to src/Internal/TopologicalSort/CycleDetectedException.php diff --git a/lib/Doctrine/ORM/LazyCriteriaCollection.php b/src/LazyCriteriaCollection.php similarity index 100% rename from lib/Doctrine/ORM/LazyCriteriaCollection.php rename to src/LazyCriteriaCollection.php diff --git a/lib/Doctrine/ORM/Mapping/AnsiQuoteStrategy.php b/src/Mapping/AnsiQuoteStrategy.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/AnsiQuoteStrategy.php rename to src/Mapping/AnsiQuoteStrategy.php diff --git a/lib/Doctrine/ORM/Mapping/ArrayAccessImplementation.php b/src/Mapping/ArrayAccessImplementation.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ArrayAccessImplementation.php rename to src/Mapping/ArrayAccessImplementation.php diff --git a/lib/Doctrine/ORM/Mapping/AssociationMapping.php b/src/Mapping/AssociationMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/AssociationMapping.php rename to src/Mapping/AssociationMapping.php diff --git a/lib/Doctrine/ORM/Mapping/AssociationOverride.php b/src/Mapping/AssociationOverride.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/AssociationOverride.php rename to src/Mapping/AssociationOverride.php diff --git a/lib/Doctrine/ORM/Mapping/AssociationOverrides.php b/src/Mapping/AssociationOverrides.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/AssociationOverrides.php rename to src/Mapping/AssociationOverrides.php diff --git a/lib/Doctrine/ORM/Mapping/AttributeOverride.php b/src/Mapping/AttributeOverride.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/AttributeOverride.php rename to src/Mapping/AttributeOverride.php diff --git a/lib/Doctrine/ORM/Mapping/AttributeOverrides.php b/src/Mapping/AttributeOverrides.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/AttributeOverrides.php rename to src/Mapping/AttributeOverrides.php diff --git a/lib/Doctrine/ORM/Mapping/Builder/AssociationBuilder.php b/src/Mapping/Builder/AssociationBuilder.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Builder/AssociationBuilder.php rename to src/Mapping/Builder/AssociationBuilder.php diff --git a/lib/Doctrine/ORM/Mapping/Builder/ClassMetadataBuilder.php b/src/Mapping/Builder/ClassMetadataBuilder.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Builder/ClassMetadataBuilder.php rename to src/Mapping/Builder/ClassMetadataBuilder.php diff --git a/lib/Doctrine/ORM/Mapping/Builder/EmbeddedBuilder.php b/src/Mapping/Builder/EmbeddedBuilder.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Builder/EmbeddedBuilder.php rename to src/Mapping/Builder/EmbeddedBuilder.php diff --git a/lib/Doctrine/ORM/Mapping/Builder/EntityListenerBuilder.php b/src/Mapping/Builder/EntityListenerBuilder.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Builder/EntityListenerBuilder.php rename to src/Mapping/Builder/EntityListenerBuilder.php diff --git a/lib/Doctrine/ORM/Mapping/Builder/FieldBuilder.php b/src/Mapping/Builder/FieldBuilder.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Builder/FieldBuilder.php rename to src/Mapping/Builder/FieldBuilder.php diff --git a/lib/Doctrine/ORM/Mapping/Builder/ManyToManyAssociationBuilder.php b/src/Mapping/Builder/ManyToManyAssociationBuilder.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Builder/ManyToManyAssociationBuilder.php rename to src/Mapping/Builder/ManyToManyAssociationBuilder.php diff --git a/lib/Doctrine/ORM/Mapping/Builder/OneToManyAssociationBuilder.php b/src/Mapping/Builder/OneToManyAssociationBuilder.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Builder/OneToManyAssociationBuilder.php rename to src/Mapping/Builder/OneToManyAssociationBuilder.php diff --git a/lib/Doctrine/ORM/Mapping/Cache.php b/src/Mapping/Cache.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Cache.php rename to src/Mapping/Cache.php diff --git a/lib/Doctrine/ORM/Mapping/ChainTypedFieldMapper.php b/src/Mapping/ChainTypedFieldMapper.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ChainTypedFieldMapper.php rename to src/Mapping/ChainTypedFieldMapper.php diff --git a/lib/Doctrine/ORM/Mapping/ChangeTrackingPolicy.php b/src/Mapping/ChangeTrackingPolicy.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ChangeTrackingPolicy.php rename to src/Mapping/ChangeTrackingPolicy.php diff --git a/lib/Doctrine/ORM/Mapping/ClassMetadata.php b/src/Mapping/ClassMetadata.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ClassMetadata.php rename to src/Mapping/ClassMetadata.php diff --git a/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php b/src/Mapping/ClassMetadataFactory.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php rename to src/Mapping/ClassMetadataFactory.php diff --git a/lib/Doctrine/ORM/Mapping/Column.php b/src/Mapping/Column.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Column.php rename to src/Mapping/Column.php diff --git a/lib/Doctrine/ORM/Mapping/CustomIdGenerator.php b/src/Mapping/CustomIdGenerator.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/CustomIdGenerator.php rename to src/Mapping/CustomIdGenerator.php diff --git a/lib/Doctrine/ORM/Mapping/DefaultEntityListenerResolver.php b/src/Mapping/DefaultEntityListenerResolver.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/DefaultEntityListenerResolver.php rename to src/Mapping/DefaultEntityListenerResolver.php diff --git a/lib/Doctrine/ORM/Mapping/DefaultNamingStrategy.php b/src/Mapping/DefaultNamingStrategy.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/DefaultNamingStrategy.php rename to src/Mapping/DefaultNamingStrategy.php diff --git a/lib/Doctrine/ORM/Mapping/DefaultQuoteStrategy.php b/src/Mapping/DefaultQuoteStrategy.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/DefaultQuoteStrategy.php rename to src/Mapping/DefaultQuoteStrategy.php diff --git a/lib/Doctrine/ORM/Mapping/DefaultTypedFieldMapper.php b/src/Mapping/DefaultTypedFieldMapper.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/DefaultTypedFieldMapper.php rename to src/Mapping/DefaultTypedFieldMapper.php diff --git a/lib/Doctrine/ORM/Mapping/DiscriminatorColumn.php b/src/Mapping/DiscriminatorColumn.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/DiscriminatorColumn.php rename to src/Mapping/DiscriminatorColumn.php diff --git a/lib/Doctrine/ORM/Mapping/DiscriminatorColumnMapping.php b/src/Mapping/DiscriminatorColumnMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/DiscriminatorColumnMapping.php rename to src/Mapping/DiscriminatorColumnMapping.php diff --git a/lib/Doctrine/ORM/Mapping/DiscriminatorMap.php b/src/Mapping/DiscriminatorMap.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/DiscriminatorMap.php rename to src/Mapping/DiscriminatorMap.php diff --git a/lib/Doctrine/ORM/Mapping/Driver/AttributeDriver.php b/src/Mapping/Driver/AttributeDriver.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Driver/AttributeDriver.php rename to src/Mapping/Driver/AttributeDriver.php diff --git a/lib/Doctrine/ORM/Mapping/Driver/AttributeReader.php b/src/Mapping/Driver/AttributeReader.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Driver/AttributeReader.php rename to src/Mapping/Driver/AttributeReader.php diff --git a/lib/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php b/src/Mapping/Driver/DatabaseDriver.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php rename to src/Mapping/Driver/DatabaseDriver.php diff --git a/lib/Doctrine/ORM/Mapping/Driver/ReflectionBasedDriver.php b/src/Mapping/Driver/ReflectionBasedDriver.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Driver/ReflectionBasedDriver.php rename to src/Mapping/Driver/ReflectionBasedDriver.php diff --git a/lib/Doctrine/ORM/Mapping/Driver/RepeatableAttributeCollection.php b/src/Mapping/Driver/RepeatableAttributeCollection.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Driver/RepeatableAttributeCollection.php rename to src/Mapping/Driver/RepeatableAttributeCollection.php diff --git a/lib/Doctrine/ORM/Mapping/Driver/SimplifiedXmlDriver.php b/src/Mapping/Driver/SimplifiedXmlDriver.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Driver/SimplifiedXmlDriver.php rename to src/Mapping/Driver/SimplifiedXmlDriver.php diff --git a/lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php b/src/Mapping/Driver/XmlDriver.php similarity index 99% rename from lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php rename to src/Mapping/Driver/XmlDriver.php index dafd468176a..6da790955d1 100644 --- a/lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php +++ b/src/Mapping/Driver/XmlDriver.php @@ -920,7 +920,7 @@ private function validateMapping(string $file): void $document = new DOMDocument(); $document->load($file); - if (! $document->schemaValidate(__DIR__ . '/../../../../../doctrine-mapping.xsd')) { + if (! $document->schemaValidate(__DIR__ . '/../../../doctrine-mapping.xsd')) { throw MappingException::fromLibXmlErrors(libxml_get_errors()); } } finally { diff --git a/lib/Doctrine/ORM/Mapping/Embeddable.php b/src/Mapping/Embeddable.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Embeddable.php rename to src/Mapping/Embeddable.php diff --git a/lib/Doctrine/ORM/Mapping/Embedded.php b/src/Mapping/Embedded.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Embedded.php rename to src/Mapping/Embedded.php diff --git a/lib/Doctrine/ORM/Mapping/EmbeddedClassMapping.php b/src/Mapping/EmbeddedClassMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/EmbeddedClassMapping.php rename to src/Mapping/EmbeddedClassMapping.php diff --git a/lib/Doctrine/ORM/Mapping/Entity.php b/src/Mapping/Entity.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Entity.php rename to src/Mapping/Entity.php diff --git a/lib/Doctrine/ORM/Mapping/EntityListenerResolver.php b/src/Mapping/EntityListenerResolver.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/EntityListenerResolver.php rename to src/Mapping/EntityListenerResolver.php diff --git a/lib/Doctrine/ORM/Mapping/EntityListeners.php b/src/Mapping/EntityListeners.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/EntityListeners.php rename to src/Mapping/EntityListeners.php diff --git a/lib/Doctrine/ORM/Mapping/Exception/InvalidCustomGenerator.php b/src/Mapping/Exception/InvalidCustomGenerator.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Exception/InvalidCustomGenerator.php rename to src/Mapping/Exception/InvalidCustomGenerator.php diff --git a/lib/Doctrine/ORM/Mapping/Exception/UnknownGeneratorType.php b/src/Mapping/Exception/UnknownGeneratorType.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Exception/UnknownGeneratorType.php rename to src/Mapping/Exception/UnknownGeneratorType.php diff --git a/lib/Doctrine/ORM/Mapping/FieldMapping.php b/src/Mapping/FieldMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/FieldMapping.php rename to src/Mapping/FieldMapping.php diff --git a/lib/Doctrine/ORM/Mapping/GeneratedValue.php b/src/Mapping/GeneratedValue.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/GeneratedValue.php rename to src/Mapping/GeneratedValue.php diff --git a/lib/Doctrine/ORM/Mapping/HasLifecycleCallbacks.php b/src/Mapping/HasLifecycleCallbacks.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/HasLifecycleCallbacks.php rename to src/Mapping/HasLifecycleCallbacks.php diff --git a/lib/Doctrine/ORM/Mapping/Id.php b/src/Mapping/Id.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Id.php rename to src/Mapping/Id.php diff --git a/lib/Doctrine/ORM/Mapping/Index.php b/src/Mapping/Index.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Index.php rename to src/Mapping/Index.php diff --git a/lib/Doctrine/ORM/Mapping/InheritanceType.php b/src/Mapping/InheritanceType.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/InheritanceType.php rename to src/Mapping/InheritanceType.php diff --git a/lib/Doctrine/ORM/Mapping/InverseJoinColumn.php b/src/Mapping/InverseJoinColumn.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/InverseJoinColumn.php rename to src/Mapping/InverseJoinColumn.php diff --git a/lib/Doctrine/ORM/Mapping/InverseSideMapping.php b/src/Mapping/InverseSideMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/InverseSideMapping.php rename to src/Mapping/InverseSideMapping.php diff --git a/lib/Doctrine/ORM/Mapping/JoinColumn.php b/src/Mapping/JoinColumn.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/JoinColumn.php rename to src/Mapping/JoinColumn.php diff --git a/lib/Doctrine/ORM/Mapping/JoinColumnMapping.php b/src/Mapping/JoinColumnMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/JoinColumnMapping.php rename to src/Mapping/JoinColumnMapping.php diff --git a/lib/Doctrine/ORM/Mapping/JoinColumnProperties.php b/src/Mapping/JoinColumnProperties.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/JoinColumnProperties.php rename to src/Mapping/JoinColumnProperties.php diff --git a/lib/Doctrine/ORM/Mapping/JoinColumns.php b/src/Mapping/JoinColumns.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/JoinColumns.php rename to src/Mapping/JoinColumns.php diff --git a/lib/Doctrine/ORM/Mapping/JoinTable.php b/src/Mapping/JoinTable.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/JoinTable.php rename to src/Mapping/JoinTable.php diff --git a/lib/Doctrine/ORM/Mapping/JoinTableMapping.php b/src/Mapping/JoinTableMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/JoinTableMapping.php rename to src/Mapping/JoinTableMapping.php diff --git a/lib/Doctrine/ORM/Mapping/ManyToMany.php b/src/Mapping/ManyToMany.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ManyToMany.php rename to src/Mapping/ManyToMany.php diff --git a/lib/Doctrine/ORM/Mapping/ManyToManyAssociationMapping.php b/src/Mapping/ManyToManyAssociationMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ManyToManyAssociationMapping.php rename to src/Mapping/ManyToManyAssociationMapping.php diff --git a/lib/Doctrine/ORM/Mapping/ManyToManyInverseSideMapping.php b/src/Mapping/ManyToManyInverseSideMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ManyToManyInverseSideMapping.php rename to src/Mapping/ManyToManyInverseSideMapping.php diff --git a/lib/Doctrine/ORM/Mapping/ManyToManyOwningSideMapping.php b/src/Mapping/ManyToManyOwningSideMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ManyToManyOwningSideMapping.php rename to src/Mapping/ManyToManyOwningSideMapping.php diff --git a/lib/Doctrine/ORM/Mapping/ManyToOne.php b/src/Mapping/ManyToOne.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ManyToOne.php rename to src/Mapping/ManyToOne.php diff --git a/lib/Doctrine/ORM/Mapping/ManyToOneAssociationMapping.php b/src/Mapping/ManyToOneAssociationMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ManyToOneAssociationMapping.php rename to src/Mapping/ManyToOneAssociationMapping.php diff --git a/lib/Doctrine/ORM/Mapping/MappedSuperclass.php b/src/Mapping/MappedSuperclass.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/MappedSuperclass.php rename to src/Mapping/MappedSuperclass.php diff --git a/lib/Doctrine/ORM/Mapping/MappingAttribute.php b/src/Mapping/MappingAttribute.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/MappingAttribute.php rename to src/Mapping/MappingAttribute.php diff --git a/lib/Doctrine/ORM/Mapping/MappingException.php b/src/Mapping/MappingException.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/MappingException.php rename to src/Mapping/MappingException.php diff --git a/lib/Doctrine/ORM/Mapping/NamingStrategy.php b/src/Mapping/NamingStrategy.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/NamingStrategy.php rename to src/Mapping/NamingStrategy.php diff --git a/lib/Doctrine/ORM/Mapping/OneToMany.php b/src/Mapping/OneToMany.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/OneToMany.php rename to src/Mapping/OneToMany.php diff --git a/lib/Doctrine/ORM/Mapping/OneToManyAssociationMapping.php b/src/Mapping/OneToManyAssociationMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/OneToManyAssociationMapping.php rename to src/Mapping/OneToManyAssociationMapping.php diff --git a/lib/Doctrine/ORM/Mapping/OneToOne.php b/src/Mapping/OneToOne.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/OneToOne.php rename to src/Mapping/OneToOne.php diff --git a/lib/Doctrine/ORM/Mapping/OneToOneAssociationMapping.php b/src/Mapping/OneToOneAssociationMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/OneToOneAssociationMapping.php rename to src/Mapping/OneToOneAssociationMapping.php diff --git a/lib/Doctrine/ORM/Mapping/OneToOneInverseSideMapping.php b/src/Mapping/OneToOneInverseSideMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/OneToOneInverseSideMapping.php rename to src/Mapping/OneToOneInverseSideMapping.php diff --git a/lib/Doctrine/ORM/Mapping/OneToOneOwningSideMapping.php b/src/Mapping/OneToOneOwningSideMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/OneToOneOwningSideMapping.php rename to src/Mapping/OneToOneOwningSideMapping.php diff --git a/lib/Doctrine/ORM/Mapping/OrderBy.php b/src/Mapping/OrderBy.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/OrderBy.php rename to src/Mapping/OrderBy.php diff --git a/lib/Doctrine/ORM/Mapping/OwningSideMapping.php b/src/Mapping/OwningSideMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/OwningSideMapping.php rename to src/Mapping/OwningSideMapping.php diff --git a/lib/Doctrine/ORM/Mapping/PostLoad.php b/src/Mapping/PostLoad.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/PostLoad.php rename to src/Mapping/PostLoad.php diff --git a/lib/Doctrine/ORM/Mapping/PostPersist.php b/src/Mapping/PostPersist.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/PostPersist.php rename to src/Mapping/PostPersist.php diff --git a/lib/Doctrine/ORM/Mapping/PostRemove.php b/src/Mapping/PostRemove.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/PostRemove.php rename to src/Mapping/PostRemove.php diff --git a/lib/Doctrine/ORM/Mapping/PostUpdate.php b/src/Mapping/PostUpdate.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/PostUpdate.php rename to src/Mapping/PostUpdate.php diff --git a/lib/Doctrine/ORM/Mapping/PreFlush.php b/src/Mapping/PreFlush.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/PreFlush.php rename to src/Mapping/PreFlush.php diff --git a/lib/Doctrine/ORM/Mapping/PrePersist.php b/src/Mapping/PrePersist.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/PrePersist.php rename to src/Mapping/PrePersist.php diff --git a/lib/Doctrine/ORM/Mapping/PreRemove.php b/src/Mapping/PreRemove.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/PreRemove.php rename to src/Mapping/PreRemove.php diff --git a/lib/Doctrine/ORM/Mapping/PreUpdate.php b/src/Mapping/PreUpdate.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/PreUpdate.php rename to src/Mapping/PreUpdate.php diff --git a/lib/Doctrine/ORM/Mapping/QuoteStrategy.php b/src/Mapping/QuoteStrategy.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/QuoteStrategy.php rename to src/Mapping/QuoteStrategy.php diff --git a/lib/Doctrine/ORM/Mapping/ReflectionEmbeddedProperty.php b/src/Mapping/ReflectionEmbeddedProperty.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ReflectionEmbeddedProperty.php rename to src/Mapping/ReflectionEmbeddedProperty.php diff --git a/lib/Doctrine/ORM/Mapping/ReflectionEnumProperty.php b/src/Mapping/ReflectionEnumProperty.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ReflectionEnumProperty.php rename to src/Mapping/ReflectionEnumProperty.php diff --git a/lib/Doctrine/ORM/Mapping/ReflectionReadonlyProperty.php b/src/Mapping/ReflectionReadonlyProperty.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ReflectionReadonlyProperty.php rename to src/Mapping/ReflectionReadonlyProperty.php diff --git a/lib/Doctrine/ORM/Mapping/SequenceGenerator.php b/src/Mapping/SequenceGenerator.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/SequenceGenerator.php rename to src/Mapping/SequenceGenerator.php diff --git a/lib/Doctrine/ORM/Mapping/Table.php b/src/Mapping/Table.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Table.php rename to src/Mapping/Table.php diff --git a/lib/Doctrine/ORM/Mapping/ToManyAssociationMapping.php b/src/Mapping/ToManyAssociationMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ToManyAssociationMapping.php rename to src/Mapping/ToManyAssociationMapping.php diff --git a/lib/Doctrine/ORM/Mapping/ToManyAssociationMappingImplementation.php b/src/Mapping/ToManyAssociationMappingImplementation.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ToManyAssociationMappingImplementation.php rename to src/Mapping/ToManyAssociationMappingImplementation.php diff --git a/lib/Doctrine/ORM/Mapping/ToManyInverseSideMapping.php b/src/Mapping/ToManyInverseSideMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ToManyInverseSideMapping.php rename to src/Mapping/ToManyInverseSideMapping.php diff --git a/lib/Doctrine/ORM/Mapping/ToManyOwningSideMapping.php b/src/Mapping/ToManyOwningSideMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ToManyOwningSideMapping.php rename to src/Mapping/ToManyOwningSideMapping.php diff --git a/lib/Doctrine/ORM/Mapping/ToOneAssociationMapping.php b/src/Mapping/ToOneAssociationMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ToOneAssociationMapping.php rename to src/Mapping/ToOneAssociationMapping.php diff --git a/lib/Doctrine/ORM/Mapping/ToOneInverseSideMapping.php b/src/Mapping/ToOneInverseSideMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ToOneInverseSideMapping.php rename to src/Mapping/ToOneInverseSideMapping.php diff --git a/lib/Doctrine/ORM/Mapping/ToOneOwningSideMapping.php b/src/Mapping/ToOneOwningSideMapping.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/ToOneOwningSideMapping.php rename to src/Mapping/ToOneOwningSideMapping.php diff --git a/lib/Doctrine/ORM/Mapping/TypedFieldMapper.php b/src/Mapping/TypedFieldMapper.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/TypedFieldMapper.php rename to src/Mapping/TypedFieldMapper.php diff --git a/lib/Doctrine/ORM/Mapping/UnderscoreNamingStrategy.php b/src/Mapping/UnderscoreNamingStrategy.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/UnderscoreNamingStrategy.php rename to src/Mapping/UnderscoreNamingStrategy.php diff --git a/lib/Doctrine/ORM/Mapping/UniqueConstraint.php b/src/Mapping/UniqueConstraint.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/UniqueConstraint.php rename to src/Mapping/UniqueConstraint.php diff --git a/lib/Doctrine/ORM/Mapping/Version.php b/src/Mapping/Version.php similarity index 100% rename from lib/Doctrine/ORM/Mapping/Version.php rename to src/Mapping/Version.php diff --git a/lib/Doctrine/ORM/NativeQuery.php b/src/NativeQuery.php similarity index 100% rename from lib/Doctrine/ORM/NativeQuery.php rename to src/NativeQuery.php diff --git a/lib/Doctrine/ORM/NoResultException.php b/src/NoResultException.php similarity index 100% rename from lib/Doctrine/ORM/NoResultException.php rename to src/NoResultException.php diff --git a/lib/Doctrine/ORM/NonUniqueResultException.php b/src/NonUniqueResultException.php similarity index 100% rename from lib/Doctrine/ORM/NonUniqueResultException.php rename to src/NonUniqueResultException.php diff --git a/lib/Doctrine/ORM/ORMInvalidArgumentException.php b/src/ORMInvalidArgumentException.php similarity index 100% rename from lib/Doctrine/ORM/ORMInvalidArgumentException.php rename to src/ORMInvalidArgumentException.php diff --git a/lib/Doctrine/ORM/ORMSetup.php b/src/ORMSetup.php similarity index 100% rename from lib/Doctrine/ORM/ORMSetup.php rename to src/ORMSetup.php diff --git a/lib/Doctrine/ORM/OptimisticLockException.php b/src/OptimisticLockException.php similarity index 100% rename from lib/Doctrine/ORM/OptimisticLockException.php rename to src/OptimisticLockException.php diff --git a/lib/Doctrine/ORM/PersistentCollection.php b/src/PersistentCollection.php similarity index 100% rename from lib/Doctrine/ORM/PersistentCollection.php rename to src/PersistentCollection.php diff --git a/lib/Doctrine/ORM/Persisters/Collection/AbstractCollectionPersister.php b/src/Persisters/Collection/AbstractCollectionPersister.php similarity index 100% rename from lib/Doctrine/ORM/Persisters/Collection/AbstractCollectionPersister.php rename to src/Persisters/Collection/AbstractCollectionPersister.php diff --git a/lib/Doctrine/ORM/Persisters/Collection/CollectionPersister.php b/src/Persisters/Collection/CollectionPersister.php similarity index 100% rename from lib/Doctrine/ORM/Persisters/Collection/CollectionPersister.php rename to src/Persisters/Collection/CollectionPersister.php diff --git a/lib/Doctrine/ORM/Persisters/Collection/ManyToManyPersister.php b/src/Persisters/Collection/ManyToManyPersister.php similarity index 100% rename from lib/Doctrine/ORM/Persisters/Collection/ManyToManyPersister.php rename to src/Persisters/Collection/ManyToManyPersister.php diff --git a/lib/Doctrine/ORM/Persisters/Collection/OneToManyPersister.php b/src/Persisters/Collection/OneToManyPersister.php similarity index 100% rename from lib/Doctrine/ORM/Persisters/Collection/OneToManyPersister.php rename to src/Persisters/Collection/OneToManyPersister.php diff --git a/lib/Doctrine/ORM/Persisters/Entity/AbstractEntityInheritancePersister.php b/src/Persisters/Entity/AbstractEntityInheritancePersister.php similarity index 100% rename from lib/Doctrine/ORM/Persisters/Entity/AbstractEntityInheritancePersister.php rename to src/Persisters/Entity/AbstractEntityInheritancePersister.php diff --git a/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php b/src/Persisters/Entity/BasicEntityPersister.php similarity index 100% rename from lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php rename to src/Persisters/Entity/BasicEntityPersister.php diff --git a/lib/Doctrine/ORM/Persisters/Entity/CachedPersisterContext.php b/src/Persisters/Entity/CachedPersisterContext.php similarity index 100% rename from lib/Doctrine/ORM/Persisters/Entity/CachedPersisterContext.php rename to src/Persisters/Entity/CachedPersisterContext.php diff --git a/lib/Doctrine/ORM/Persisters/Entity/EntityPersister.php b/src/Persisters/Entity/EntityPersister.php similarity index 100% rename from lib/Doctrine/ORM/Persisters/Entity/EntityPersister.php rename to src/Persisters/Entity/EntityPersister.php diff --git a/lib/Doctrine/ORM/Persisters/Entity/JoinedSubclassPersister.php b/src/Persisters/Entity/JoinedSubclassPersister.php similarity index 100% rename from lib/Doctrine/ORM/Persisters/Entity/JoinedSubclassPersister.php rename to src/Persisters/Entity/JoinedSubclassPersister.php diff --git a/lib/Doctrine/ORM/Persisters/Entity/SingleTablePersister.php b/src/Persisters/Entity/SingleTablePersister.php similarity index 100% rename from lib/Doctrine/ORM/Persisters/Entity/SingleTablePersister.php rename to src/Persisters/Entity/SingleTablePersister.php diff --git a/lib/Doctrine/ORM/Persisters/Exception/CantUseInOperatorOnCompositeKeys.php b/src/Persisters/Exception/CantUseInOperatorOnCompositeKeys.php similarity index 100% rename from lib/Doctrine/ORM/Persisters/Exception/CantUseInOperatorOnCompositeKeys.php rename to src/Persisters/Exception/CantUseInOperatorOnCompositeKeys.php diff --git a/lib/Doctrine/ORM/Persisters/Exception/InvalidOrientation.php b/src/Persisters/Exception/InvalidOrientation.php similarity index 100% rename from lib/Doctrine/ORM/Persisters/Exception/InvalidOrientation.php rename to src/Persisters/Exception/InvalidOrientation.php diff --git a/lib/Doctrine/ORM/Persisters/Exception/UnrecognizedField.php b/src/Persisters/Exception/UnrecognizedField.php similarity index 100% rename from lib/Doctrine/ORM/Persisters/Exception/UnrecognizedField.php rename to src/Persisters/Exception/UnrecognizedField.php diff --git a/lib/Doctrine/ORM/Persisters/MatchingAssociationFieldRequiresObject.php b/src/Persisters/MatchingAssociationFieldRequiresObject.php similarity index 100% rename from lib/Doctrine/ORM/Persisters/MatchingAssociationFieldRequiresObject.php rename to src/Persisters/MatchingAssociationFieldRequiresObject.php diff --git a/lib/Doctrine/ORM/Persisters/PersisterException.php b/src/Persisters/PersisterException.php similarity index 100% rename from lib/Doctrine/ORM/Persisters/PersisterException.php rename to src/Persisters/PersisterException.php diff --git a/lib/Doctrine/ORM/Persisters/SqlExpressionVisitor.php b/src/Persisters/SqlExpressionVisitor.php similarity index 100% rename from lib/Doctrine/ORM/Persisters/SqlExpressionVisitor.php rename to src/Persisters/SqlExpressionVisitor.php diff --git a/lib/Doctrine/ORM/Persisters/SqlValueVisitor.php b/src/Persisters/SqlValueVisitor.php similarity index 100% rename from lib/Doctrine/ORM/Persisters/SqlValueVisitor.php rename to src/Persisters/SqlValueVisitor.php diff --git a/lib/Doctrine/ORM/PessimisticLockException.php b/src/PessimisticLockException.php similarity index 100% rename from lib/Doctrine/ORM/PessimisticLockException.php rename to src/PessimisticLockException.php diff --git a/lib/Doctrine/ORM/Proxy/Autoloader.php b/src/Proxy/Autoloader.php similarity index 100% rename from lib/Doctrine/ORM/Proxy/Autoloader.php rename to src/Proxy/Autoloader.php diff --git a/lib/Doctrine/ORM/Proxy/DefaultProxyClassNameResolver.php b/src/Proxy/DefaultProxyClassNameResolver.php similarity index 100% rename from lib/Doctrine/ORM/Proxy/DefaultProxyClassNameResolver.php rename to src/Proxy/DefaultProxyClassNameResolver.php diff --git a/lib/Doctrine/ORM/Proxy/InternalProxy.php b/src/Proxy/InternalProxy.php similarity index 100% rename from lib/Doctrine/ORM/Proxy/InternalProxy.php rename to src/Proxy/InternalProxy.php diff --git a/lib/Doctrine/ORM/Proxy/NotAProxyClass.php b/src/Proxy/NotAProxyClass.php similarity index 100% rename from lib/Doctrine/ORM/Proxy/NotAProxyClass.php rename to src/Proxy/NotAProxyClass.php diff --git a/lib/Doctrine/ORM/Proxy/ProxyFactory.php b/src/Proxy/ProxyFactory.php similarity index 100% rename from lib/Doctrine/ORM/Proxy/ProxyFactory.php rename to src/Proxy/ProxyFactory.php diff --git a/lib/Doctrine/ORM/Query.php b/src/Query.php similarity index 100% rename from lib/Doctrine/ORM/Query.php rename to src/Query.php diff --git a/lib/Doctrine/ORM/Query/AST/ASTException.php b/src/Query/AST/ASTException.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/ASTException.php rename to src/Query/AST/ASTException.php diff --git a/lib/Doctrine/ORM/Query/AST/AggregateExpression.php b/src/Query/AST/AggregateExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/AggregateExpression.php rename to src/Query/AST/AggregateExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/ArithmeticExpression.php b/src/Query/AST/ArithmeticExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/ArithmeticExpression.php rename to src/Query/AST/ArithmeticExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/ArithmeticFactor.php b/src/Query/AST/ArithmeticFactor.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/ArithmeticFactor.php rename to src/Query/AST/ArithmeticFactor.php diff --git a/lib/Doctrine/ORM/Query/AST/ArithmeticTerm.php b/src/Query/AST/ArithmeticTerm.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/ArithmeticTerm.php rename to src/Query/AST/ArithmeticTerm.php diff --git a/lib/Doctrine/ORM/Query/AST/BetweenExpression.php b/src/Query/AST/BetweenExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/BetweenExpression.php rename to src/Query/AST/BetweenExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/CoalesceExpression.php b/src/Query/AST/CoalesceExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/CoalesceExpression.php rename to src/Query/AST/CoalesceExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/CollectionMemberExpression.php b/src/Query/AST/CollectionMemberExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/CollectionMemberExpression.php rename to src/Query/AST/CollectionMemberExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/ComparisonExpression.php b/src/Query/AST/ComparisonExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/ComparisonExpression.php rename to src/Query/AST/ComparisonExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/ConditionalExpression.php b/src/Query/AST/ConditionalExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/ConditionalExpression.php rename to src/Query/AST/ConditionalExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/ConditionalFactor.php b/src/Query/AST/ConditionalFactor.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/ConditionalFactor.php rename to src/Query/AST/ConditionalFactor.php diff --git a/lib/Doctrine/ORM/Query/AST/ConditionalPrimary.php b/src/Query/AST/ConditionalPrimary.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/ConditionalPrimary.php rename to src/Query/AST/ConditionalPrimary.php diff --git a/lib/Doctrine/ORM/Query/AST/ConditionalTerm.php b/src/Query/AST/ConditionalTerm.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/ConditionalTerm.php rename to src/Query/AST/ConditionalTerm.php diff --git a/lib/Doctrine/ORM/Query/AST/DeleteClause.php b/src/Query/AST/DeleteClause.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/DeleteClause.php rename to src/Query/AST/DeleteClause.php diff --git a/lib/Doctrine/ORM/Query/AST/DeleteStatement.php b/src/Query/AST/DeleteStatement.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/DeleteStatement.php rename to src/Query/AST/DeleteStatement.php diff --git a/lib/Doctrine/ORM/Query/AST/EmptyCollectionComparisonExpression.php b/src/Query/AST/EmptyCollectionComparisonExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/EmptyCollectionComparisonExpression.php rename to src/Query/AST/EmptyCollectionComparisonExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/ExistsExpression.php b/src/Query/AST/ExistsExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/ExistsExpression.php rename to src/Query/AST/ExistsExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/FromClause.php b/src/Query/AST/FromClause.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/FromClause.php rename to src/Query/AST/FromClause.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/AbsFunction.php b/src/Query/AST/Functions/AbsFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/AbsFunction.php rename to src/Query/AST/Functions/AbsFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/AvgFunction.php b/src/Query/AST/Functions/AvgFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/AvgFunction.php rename to src/Query/AST/Functions/AvgFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/BitAndFunction.php b/src/Query/AST/Functions/BitAndFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/BitAndFunction.php rename to src/Query/AST/Functions/BitAndFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/BitOrFunction.php b/src/Query/AST/Functions/BitOrFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/BitOrFunction.php rename to src/Query/AST/Functions/BitOrFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/ConcatFunction.php b/src/Query/AST/Functions/ConcatFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/ConcatFunction.php rename to src/Query/AST/Functions/ConcatFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/CountFunction.php b/src/Query/AST/Functions/CountFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/CountFunction.php rename to src/Query/AST/Functions/CountFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/CurrentDateFunction.php b/src/Query/AST/Functions/CurrentDateFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/CurrentDateFunction.php rename to src/Query/AST/Functions/CurrentDateFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/CurrentTimeFunction.php b/src/Query/AST/Functions/CurrentTimeFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/CurrentTimeFunction.php rename to src/Query/AST/Functions/CurrentTimeFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/CurrentTimestampFunction.php b/src/Query/AST/Functions/CurrentTimestampFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/CurrentTimestampFunction.php rename to src/Query/AST/Functions/CurrentTimestampFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/DateAddFunction.php b/src/Query/AST/Functions/DateAddFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/DateAddFunction.php rename to src/Query/AST/Functions/DateAddFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/DateDiffFunction.php b/src/Query/AST/Functions/DateDiffFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/DateDiffFunction.php rename to src/Query/AST/Functions/DateDiffFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/DateSubFunction.php b/src/Query/AST/Functions/DateSubFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/DateSubFunction.php rename to src/Query/AST/Functions/DateSubFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/FunctionNode.php b/src/Query/AST/Functions/FunctionNode.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/FunctionNode.php rename to src/Query/AST/Functions/FunctionNode.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/IdentityFunction.php b/src/Query/AST/Functions/IdentityFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/IdentityFunction.php rename to src/Query/AST/Functions/IdentityFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/LengthFunction.php b/src/Query/AST/Functions/LengthFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/LengthFunction.php rename to src/Query/AST/Functions/LengthFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/LocateFunction.php b/src/Query/AST/Functions/LocateFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/LocateFunction.php rename to src/Query/AST/Functions/LocateFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/LowerFunction.php b/src/Query/AST/Functions/LowerFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/LowerFunction.php rename to src/Query/AST/Functions/LowerFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/MaxFunction.php b/src/Query/AST/Functions/MaxFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/MaxFunction.php rename to src/Query/AST/Functions/MaxFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/MinFunction.php b/src/Query/AST/Functions/MinFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/MinFunction.php rename to src/Query/AST/Functions/MinFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/ModFunction.php b/src/Query/AST/Functions/ModFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/ModFunction.php rename to src/Query/AST/Functions/ModFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/SizeFunction.php b/src/Query/AST/Functions/SizeFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/SizeFunction.php rename to src/Query/AST/Functions/SizeFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/SqrtFunction.php b/src/Query/AST/Functions/SqrtFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/SqrtFunction.php rename to src/Query/AST/Functions/SqrtFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/SubstringFunction.php b/src/Query/AST/Functions/SubstringFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/SubstringFunction.php rename to src/Query/AST/Functions/SubstringFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/SumFunction.php b/src/Query/AST/Functions/SumFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/SumFunction.php rename to src/Query/AST/Functions/SumFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/TrimFunction.php b/src/Query/AST/Functions/TrimFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/TrimFunction.php rename to src/Query/AST/Functions/TrimFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/Functions/UpperFunction.php b/src/Query/AST/Functions/UpperFunction.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Functions/UpperFunction.php rename to src/Query/AST/Functions/UpperFunction.php diff --git a/lib/Doctrine/ORM/Query/AST/GeneralCaseExpression.php b/src/Query/AST/GeneralCaseExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/GeneralCaseExpression.php rename to src/Query/AST/GeneralCaseExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/GroupByClause.php b/src/Query/AST/GroupByClause.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/GroupByClause.php rename to src/Query/AST/GroupByClause.php diff --git a/lib/Doctrine/ORM/Query/AST/HavingClause.php b/src/Query/AST/HavingClause.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/HavingClause.php rename to src/Query/AST/HavingClause.php diff --git a/lib/Doctrine/ORM/Query/AST/IdentificationVariableDeclaration.php b/src/Query/AST/IdentificationVariableDeclaration.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/IdentificationVariableDeclaration.php rename to src/Query/AST/IdentificationVariableDeclaration.php diff --git a/lib/Doctrine/ORM/Query/AST/InListExpression.php b/src/Query/AST/InListExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/InListExpression.php rename to src/Query/AST/InListExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/InSubselectExpression.php b/src/Query/AST/InSubselectExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/InSubselectExpression.php rename to src/Query/AST/InSubselectExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/IndexBy.php b/src/Query/AST/IndexBy.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/IndexBy.php rename to src/Query/AST/IndexBy.php diff --git a/lib/Doctrine/ORM/Query/AST/InputParameter.php b/src/Query/AST/InputParameter.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/InputParameter.php rename to src/Query/AST/InputParameter.php diff --git a/lib/Doctrine/ORM/Query/AST/InstanceOfExpression.php b/src/Query/AST/InstanceOfExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/InstanceOfExpression.php rename to src/Query/AST/InstanceOfExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/Join.php b/src/Query/AST/Join.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Join.php rename to src/Query/AST/Join.php diff --git a/lib/Doctrine/ORM/Query/AST/JoinAssociationDeclaration.php b/src/Query/AST/JoinAssociationDeclaration.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/JoinAssociationDeclaration.php rename to src/Query/AST/JoinAssociationDeclaration.php diff --git a/lib/Doctrine/ORM/Query/AST/JoinAssociationPathExpression.php b/src/Query/AST/JoinAssociationPathExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/JoinAssociationPathExpression.php rename to src/Query/AST/JoinAssociationPathExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/JoinClassPathExpression.php b/src/Query/AST/JoinClassPathExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/JoinClassPathExpression.php rename to src/Query/AST/JoinClassPathExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/JoinVariableDeclaration.php b/src/Query/AST/JoinVariableDeclaration.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/JoinVariableDeclaration.php rename to src/Query/AST/JoinVariableDeclaration.php diff --git a/lib/Doctrine/ORM/Query/AST/LikeExpression.php b/src/Query/AST/LikeExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/LikeExpression.php rename to src/Query/AST/LikeExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/Literal.php b/src/Query/AST/Literal.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Literal.php rename to src/Query/AST/Literal.php diff --git a/lib/Doctrine/ORM/Query/AST/NewObjectExpression.php b/src/Query/AST/NewObjectExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/NewObjectExpression.php rename to src/Query/AST/NewObjectExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/Node.php b/src/Query/AST/Node.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Node.php rename to src/Query/AST/Node.php diff --git a/lib/Doctrine/ORM/Query/AST/NullComparisonExpression.php b/src/Query/AST/NullComparisonExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/NullComparisonExpression.php rename to src/Query/AST/NullComparisonExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/NullIfExpression.php b/src/Query/AST/NullIfExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/NullIfExpression.php rename to src/Query/AST/NullIfExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/OrderByClause.php b/src/Query/AST/OrderByClause.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/OrderByClause.php rename to src/Query/AST/OrderByClause.php diff --git a/lib/Doctrine/ORM/Query/AST/OrderByItem.php b/src/Query/AST/OrderByItem.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/OrderByItem.php rename to src/Query/AST/OrderByItem.php diff --git a/lib/Doctrine/ORM/Query/AST/ParenthesisExpression.php b/src/Query/AST/ParenthesisExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/ParenthesisExpression.php rename to src/Query/AST/ParenthesisExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/PathExpression.php b/src/Query/AST/PathExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/PathExpression.php rename to src/Query/AST/PathExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/Phase2OptimizableConditional.php b/src/Query/AST/Phase2OptimizableConditional.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Phase2OptimizableConditional.php rename to src/Query/AST/Phase2OptimizableConditional.php diff --git a/lib/Doctrine/ORM/Query/AST/QuantifiedExpression.php b/src/Query/AST/QuantifiedExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/QuantifiedExpression.php rename to src/Query/AST/QuantifiedExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/RangeVariableDeclaration.php b/src/Query/AST/RangeVariableDeclaration.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/RangeVariableDeclaration.php rename to src/Query/AST/RangeVariableDeclaration.php diff --git a/lib/Doctrine/ORM/Query/AST/SelectClause.php b/src/Query/AST/SelectClause.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/SelectClause.php rename to src/Query/AST/SelectClause.php diff --git a/lib/Doctrine/ORM/Query/AST/SelectExpression.php b/src/Query/AST/SelectExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/SelectExpression.php rename to src/Query/AST/SelectExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/SelectStatement.php b/src/Query/AST/SelectStatement.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/SelectStatement.php rename to src/Query/AST/SelectStatement.php diff --git a/lib/Doctrine/ORM/Query/AST/SimpleArithmeticExpression.php b/src/Query/AST/SimpleArithmeticExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/SimpleArithmeticExpression.php rename to src/Query/AST/SimpleArithmeticExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/SimpleCaseExpression.php b/src/Query/AST/SimpleCaseExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/SimpleCaseExpression.php rename to src/Query/AST/SimpleCaseExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/SimpleSelectClause.php b/src/Query/AST/SimpleSelectClause.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/SimpleSelectClause.php rename to src/Query/AST/SimpleSelectClause.php diff --git a/lib/Doctrine/ORM/Query/AST/SimpleSelectExpression.php b/src/Query/AST/SimpleSelectExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/SimpleSelectExpression.php rename to src/Query/AST/SimpleSelectExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/SimpleWhenClause.php b/src/Query/AST/SimpleWhenClause.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/SimpleWhenClause.php rename to src/Query/AST/SimpleWhenClause.php diff --git a/lib/Doctrine/ORM/Query/AST/Subselect.php b/src/Query/AST/Subselect.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/Subselect.php rename to src/Query/AST/Subselect.php diff --git a/lib/Doctrine/ORM/Query/AST/SubselectFromClause.php b/src/Query/AST/SubselectFromClause.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/SubselectFromClause.php rename to src/Query/AST/SubselectFromClause.php diff --git a/lib/Doctrine/ORM/Query/AST/SubselectIdentificationVariableDeclaration.php b/src/Query/AST/SubselectIdentificationVariableDeclaration.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/SubselectIdentificationVariableDeclaration.php rename to src/Query/AST/SubselectIdentificationVariableDeclaration.php diff --git a/lib/Doctrine/ORM/Query/AST/TypedExpression.php b/src/Query/AST/TypedExpression.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/TypedExpression.php rename to src/Query/AST/TypedExpression.php diff --git a/lib/Doctrine/ORM/Query/AST/UpdateClause.php b/src/Query/AST/UpdateClause.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/UpdateClause.php rename to src/Query/AST/UpdateClause.php diff --git a/lib/Doctrine/ORM/Query/AST/UpdateItem.php b/src/Query/AST/UpdateItem.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/UpdateItem.php rename to src/Query/AST/UpdateItem.php diff --git a/lib/Doctrine/ORM/Query/AST/UpdateStatement.php b/src/Query/AST/UpdateStatement.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/UpdateStatement.php rename to src/Query/AST/UpdateStatement.php diff --git a/lib/Doctrine/ORM/Query/AST/WhenClause.php b/src/Query/AST/WhenClause.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/WhenClause.php rename to src/Query/AST/WhenClause.php diff --git a/lib/Doctrine/ORM/Query/AST/WhereClause.php b/src/Query/AST/WhereClause.php similarity index 100% rename from lib/Doctrine/ORM/Query/AST/WhereClause.php rename to src/Query/AST/WhereClause.php diff --git a/lib/Doctrine/ORM/Query/Exec/AbstractSqlExecutor.php b/src/Query/Exec/AbstractSqlExecutor.php similarity index 100% rename from lib/Doctrine/ORM/Query/Exec/AbstractSqlExecutor.php rename to src/Query/Exec/AbstractSqlExecutor.php diff --git a/lib/Doctrine/ORM/Query/Exec/MultiTableDeleteExecutor.php b/src/Query/Exec/MultiTableDeleteExecutor.php similarity index 100% rename from lib/Doctrine/ORM/Query/Exec/MultiTableDeleteExecutor.php rename to src/Query/Exec/MultiTableDeleteExecutor.php diff --git a/lib/Doctrine/ORM/Query/Exec/MultiTableUpdateExecutor.php b/src/Query/Exec/MultiTableUpdateExecutor.php similarity index 100% rename from lib/Doctrine/ORM/Query/Exec/MultiTableUpdateExecutor.php rename to src/Query/Exec/MultiTableUpdateExecutor.php diff --git a/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php b/src/Query/Exec/SingleSelectExecutor.php similarity index 100% rename from lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php rename to src/Query/Exec/SingleSelectExecutor.php diff --git a/lib/Doctrine/ORM/Query/Exec/SingleTableDeleteUpdateExecutor.php b/src/Query/Exec/SingleTableDeleteUpdateExecutor.php similarity index 100% rename from lib/Doctrine/ORM/Query/Exec/SingleTableDeleteUpdateExecutor.php rename to src/Query/Exec/SingleTableDeleteUpdateExecutor.php diff --git a/lib/Doctrine/ORM/Query/Expr.php b/src/Query/Expr.php similarity index 100% rename from lib/Doctrine/ORM/Query/Expr.php rename to src/Query/Expr.php diff --git a/lib/Doctrine/ORM/Query/Expr/Andx.php b/src/Query/Expr/Andx.php similarity index 100% rename from lib/Doctrine/ORM/Query/Expr/Andx.php rename to src/Query/Expr/Andx.php diff --git a/lib/Doctrine/ORM/Query/Expr/Base.php b/src/Query/Expr/Base.php similarity index 100% rename from lib/Doctrine/ORM/Query/Expr/Base.php rename to src/Query/Expr/Base.php diff --git a/lib/Doctrine/ORM/Query/Expr/Comparison.php b/src/Query/Expr/Comparison.php similarity index 100% rename from lib/Doctrine/ORM/Query/Expr/Comparison.php rename to src/Query/Expr/Comparison.php diff --git a/lib/Doctrine/ORM/Query/Expr/Composite.php b/src/Query/Expr/Composite.php similarity index 100% rename from lib/Doctrine/ORM/Query/Expr/Composite.php rename to src/Query/Expr/Composite.php diff --git a/lib/Doctrine/ORM/Query/Expr/From.php b/src/Query/Expr/From.php similarity index 100% rename from lib/Doctrine/ORM/Query/Expr/From.php rename to src/Query/Expr/From.php diff --git a/lib/Doctrine/ORM/Query/Expr/Func.php b/src/Query/Expr/Func.php similarity index 100% rename from lib/Doctrine/ORM/Query/Expr/Func.php rename to src/Query/Expr/Func.php diff --git a/lib/Doctrine/ORM/Query/Expr/GroupBy.php b/src/Query/Expr/GroupBy.php similarity index 100% rename from lib/Doctrine/ORM/Query/Expr/GroupBy.php rename to src/Query/Expr/GroupBy.php diff --git a/lib/Doctrine/ORM/Query/Expr/Join.php b/src/Query/Expr/Join.php similarity index 100% rename from lib/Doctrine/ORM/Query/Expr/Join.php rename to src/Query/Expr/Join.php diff --git a/lib/Doctrine/ORM/Query/Expr/Literal.php b/src/Query/Expr/Literal.php similarity index 100% rename from lib/Doctrine/ORM/Query/Expr/Literal.php rename to src/Query/Expr/Literal.php diff --git a/lib/Doctrine/ORM/Query/Expr/Math.php b/src/Query/Expr/Math.php similarity index 100% rename from lib/Doctrine/ORM/Query/Expr/Math.php rename to src/Query/Expr/Math.php diff --git a/lib/Doctrine/ORM/Query/Expr/OrderBy.php b/src/Query/Expr/OrderBy.php similarity index 100% rename from lib/Doctrine/ORM/Query/Expr/OrderBy.php rename to src/Query/Expr/OrderBy.php diff --git a/lib/Doctrine/ORM/Query/Expr/Orx.php b/src/Query/Expr/Orx.php similarity index 100% rename from lib/Doctrine/ORM/Query/Expr/Orx.php rename to src/Query/Expr/Orx.php diff --git a/lib/Doctrine/ORM/Query/Expr/Select.php b/src/Query/Expr/Select.php similarity index 100% rename from lib/Doctrine/ORM/Query/Expr/Select.php rename to src/Query/Expr/Select.php diff --git a/lib/Doctrine/ORM/Query/Filter/FilterException.php b/src/Query/Filter/FilterException.php similarity index 100% rename from lib/Doctrine/ORM/Query/Filter/FilterException.php rename to src/Query/Filter/FilterException.php diff --git a/lib/Doctrine/ORM/Query/Filter/SQLFilter.php b/src/Query/Filter/SQLFilter.php similarity index 100% rename from lib/Doctrine/ORM/Query/Filter/SQLFilter.php rename to src/Query/Filter/SQLFilter.php diff --git a/lib/Doctrine/ORM/Query/FilterCollection.php b/src/Query/FilterCollection.php similarity index 100% rename from lib/Doctrine/ORM/Query/FilterCollection.php rename to src/Query/FilterCollection.php diff --git a/lib/Doctrine/ORM/Query/Lexer.php b/src/Query/Lexer.php similarity index 100% rename from lib/Doctrine/ORM/Query/Lexer.php rename to src/Query/Lexer.php diff --git a/lib/Doctrine/ORM/Query/Parameter.php b/src/Query/Parameter.php similarity index 100% rename from lib/Doctrine/ORM/Query/Parameter.php rename to src/Query/Parameter.php diff --git a/lib/Doctrine/ORM/Query/ParameterTypeInferer.php b/src/Query/ParameterTypeInferer.php similarity index 100% rename from lib/Doctrine/ORM/Query/ParameterTypeInferer.php rename to src/Query/ParameterTypeInferer.php diff --git a/lib/Doctrine/ORM/Query/Parser.php b/src/Query/Parser.php similarity index 100% rename from lib/Doctrine/ORM/Query/Parser.php rename to src/Query/Parser.php diff --git a/lib/Doctrine/ORM/Query/ParserResult.php b/src/Query/ParserResult.php similarity index 100% rename from lib/Doctrine/ORM/Query/ParserResult.php rename to src/Query/ParserResult.php diff --git a/lib/Doctrine/ORM/Query/Printer.php b/src/Query/Printer.php similarity index 100% rename from lib/Doctrine/ORM/Query/Printer.php rename to src/Query/Printer.php diff --git a/lib/Doctrine/ORM/Query/QueryException.php b/src/Query/QueryException.php similarity index 100% rename from lib/Doctrine/ORM/Query/QueryException.php rename to src/Query/QueryException.php diff --git a/lib/Doctrine/ORM/Query/QueryExpressionVisitor.php b/src/Query/QueryExpressionVisitor.php similarity index 100% rename from lib/Doctrine/ORM/Query/QueryExpressionVisitor.php rename to src/Query/QueryExpressionVisitor.php diff --git a/lib/Doctrine/ORM/Query/ResultSetMapping.php b/src/Query/ResultSetMapping.php similarity index 100% rename from lib/Doctrine/ORM/Query/ResultSetMapping.php rename to src/Query/ResultSetMapping.php diff --git a/lib/Doctrine/ORM/Query/ResultSetMappingBuilder.php b/src/Query/ResultSetMappingBuilder.php similarity index 100% rename from lib/Doctrine/ORM/Query/ResultSetMappingBuilder.php rename to src/Query/ResultSetMappingBuilder.php diff --git a/lib/Doctrine/ORM/Query/SqlWalker.php b/src/Query/SqlWalker.php similarity index 100% rename from lib/Doctrine/ORM/Query/SqlWalker.php rename to src/Query/SqlWalker.php diff --git a/lib/Doctrine/ORM/Query/TokenType.php b/src/Query/TokenType.php similarity index 100% rename from lib/Doctrine/ORM/Query/TokenType.php rename to src/Query/TokenType.php diff --git a/lib/Doctrine/ORM/Query/TreeWalker.php b/src/Query/TreeWalker.php similarity index 100% rename from lib/Doctrine/ORM/Query/TreeWalker.php rename to src/Query/TreeWalker.php diff --git a/lib/Doctrine/ORM/Query/TreeWalkerAdapter.php b/src/Query/TreeWalkerAdapter.php similarity index 100% rename from lib/Doctrine/ORM/Query/TreeWalkerAdapter.php rename to src/Query/TreeWalkerAdapter.php diff --git a/lib/Doctrine/ORM/Query/TreeWalkerChain.php b/src/Query/TreeWalkerChain.php similarity index 100% rename from lib/Doctrine/ORM/Query/TreeWalkerChain.php rename to src/Query/TreeWalkerChain.php diff --git a/lib/Doctrine/ORM/QueryBuilder.php b/src/QueryBuilder.php similarity index 100% rename from lib/Doctrine/ORM/QueryBuilder.php rename to src/QueryBuilder.php diff --git a/lib/Doctrine/ORM/Repository/DefaultRepositoryFactory.php b/src/Repository/DefaultRepositoryFactory.php similarity index 100% rename from lib/Doctrine/ORM/Repository/DefaultRepositoryFactory.php rename to src/Repository/DefaultRepositoryFactory.php diff --git a/lib/Doctrine/ORM/Repository/Exception/InvalidFindByCall.php b/src/Repository/Exception/InvalidFindByCall.php similarity index 100% rename from lib/Doctrine/ORM/Repository/Exception/InvalidFindByCall.php rename to src/Repository/Exception/InvalidFindByCall.php diff --git a/lib/Doctrine/ORM/Repository/Exception/InvalidMagicMethodCall.php b/src/Repository/Exception/InvalidMagicMethodCall.php similarity index 100% rename from lib/Doctrine/ORM/Repository/Exception/InvalidMagicMethodCall.php rename to src/Repository/Exception/InvalidMagicMethodCall.php diff --git a/lib/Doctrine/ORM/Repository/RepositoryFactory.php b/src/Repository/RepositoryFactory.php similarity index 100% rename from lib/Doctrine/ORM/Repository/RepositoryFactory.php rename to src/Repository/RepositoryFactory.php diff --git a/lib/Doctrine/ORM/Tools/AttachEntityListenersListener.php b/src/Tools/AttachEntityListenersListener.php similarity index 100% rename from lib/Doctrine/ORM/Tools/AttachEntityListenersListener.php rename to src/Tools/AttachEntityListenersListener.php diff --git a/lib/Doctrine/ORM/Tools/Console/Command/AbstractEntityManagerCommand.php b/src/Tools/Console/Command/AbstractEntityManagerCommand.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/Command/AbstractEntityManagerCommand.php rename to src/Tools/Console/Command/AbstractEntityManagerCommand.php diff --git a/lib/Doctrine/ORM/Tools/Console/Command/ClearCache/CollectionRegionCommand.php b/src/Tools/Console/Command/ClearCache/CollectionRegionCommand.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/Command/ClearCache/CollectionRegionCommand.php rename to src/Tools/Console/Command/ClearCache/CollectionRegionCommand.php diff --git a/lib/Doctrine/ORM/Tools/Console/Command/ClearCache/EntityRegionCommand.php b/src/Tools/Console/Command/ClearCache/EntityRegionCommand.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/Command/ClearCache/EntityRegionCommand.php rename to src/Tools/Console/Command/ClearCache/EntityRegionCommand.php diff --git a/lib/Doctrine/ORM/Tools/Console/Command/ClearCache/MetadataCommand.php b/src/Tools/Console/Command/ClearCache/MetadataCommand.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/Command/ClearCache/MetadataCommand.php rename to src/Tools/Console/Command/ClearCache/MetadataCommand.php diff --git a/lib/Doctrine/ORM/Tools/Console/Command/ClearCache/QueryCommand.php b/src/Tools/Console/Command/ClearCache/QueryCommand.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/Command/ClearCache/QueryCommand.php rename to src/Tools/Console/Command/ClearCache/QueryCommand.php diff --git a/lib/Doctrine/ORM/Tools/Console/Command/ClearCache/QueryRegionCommand.php b/src/Tools/Console/Command/ClearCache/QueryRegionCommand.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/Command/ClearCache/QueryRegionCommand.php rename to src/Tools/Console/Command/ClearCache/QueryRegionCommand.php diff --git a/lib/Doctrine/ORM/Tools/Console/Command/ClearCache/ResultCommand.php b/src/Tools/Console/Command/ClearCache/ResultCommand.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/Command/ClearCache/ResultCommand.php rename to src/Tools/Console/Command/ClearCache/ResultCommand.php diff --git a/lib/Doctrine/ORM/Tools/Console/Command/GenerateProxiesCommand.php b/src/Tools/Console/Command/GenerateProxiesCommand.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/Command/GenerateProxiesCommand.php rename to src/Tools/Console/Command/GenerateProxiesCommand.php diff --git a/lib/Doctrine/ORM/Tools/Console/Command/InfoCommand.php b/src/Tools/Console/Command/InfoCommand.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/Command/InfoCommand.php rename to src/Tools/Console/Command/InfoCommand.php diff --git a/lib/Doctrine/ORM/Tools/Console/Command/MappingDescribeCommand.php b/src/Tools/Console/Command/MappingDescribeCommand.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/Command/MappingDescribeCommand.php rename to src/Tools/Console/Command/MappingDescribeCommand.php diff --git a/lib/Doctrine/ORM/Tools/Console/Command/RunDqlCommand.php b/src/Tools/Console/Command/RunDqlCommand.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/Command/RunDqlCommand.php rename to src/Tools/Console/Command/RunDqlCommand.php diff --git a/lib/Doctrine/ORM/Tools/Console/Command/SchemaTool/AbstractCommand.php b/src/Tools/Console/Command/SchemaTool/AbstractCommand.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/Command/SchemaTool/AbstractCommand.php rename to src/Tools/Console/Command/SchemaTool/AbstractCommand.php diff --git a/lib/Doctrine/ORM/Tools/Console/Command/SchemaTool/CreateCommand.php b/src/Tools/Console/Command/SchemaTool/CreateCommand.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/Command/SchemaTool/CreateCommand.php rename to src/Tools/Console/Command/SchemaTool/CreateCommand.php diff --git a/lib/Doctrine/ORM/Tools/Console/Command/SchemaTool/DropCommand.php b/src/Tools/Console/Command/SchemaTool/DropCommand.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/Command/SchemaTool/DropCommand.php rename to src/Tools/Console/Command/SchemaTool/DropCommand.php diff --git a/lib/Doctrine/ORM/Tools/Console/Command/SchemaTool/UpdateCommand.php b/src/Tools/Console/Command/SchemaTool/UpdateCommand.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/Command/SchemaTool/UpdateCommand.php rename to src/Tools/Console/Command/SchemaTool/UpdateCommand.php diff --git a/lib/Doctrine/ORM/Tools/Console/Command/ValidateSchemaCommand.php b/src/Tools/Console/Command/ValidateSchemaCommand.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/Command/ValidateSchemaCommand.php rename to src/Tools/Console/Command/ValidateSchemaCommand.php diff --git a/lib/Doctrine/ORM/Tools/Console/ConsoleRunner.php b/src/Tools/Console/ConsoleRunner.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/ConsoleRunner.php rename to src/Tools/Console/ConsoleRunner.php diff --git a/lib/Doctrine/ORM/Tools/Console/EntityManagerProvider.php b/src/Tools/Console/EntityManagerProvider.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/EntityManagerProvider.php rename to src/Tools/Console/EntityManagerProvider.php diff --git a/lib/Doctrine/ORM/Tools/Console/EntityManagerProvider/ConnectionFromManagerProvider.php b/src/Tools/Console/EntityManagerProvider/ConnectionFromManagerProvider.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/EntityManagerProvider/ConnectionFromManagerProvider.php rename to src/Tools/Console/EntityManagerProvider/ConnectionFromManagerProvider.php diff --git a/lib/Doctrine/ORM/Tools/Console/EntityManagerProvider/SingleManagerProvider.php b/src/Tools/Console/EntityManagerProvider/SingleManagerProvider.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/EntityManagerProvider/SingleManagerProvider.php rename to src/Tools/Console/EntityManagerProvider/SingleManagerProvider.php diff --git a/lib/Doctrine/ORM/Tools/Console/EntityManagerProvider/UnknownManagerException.php b/src/Tools/Console/EntityManagerProvider/UnknownManagerException.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/EntityManagerProvider/UnknownManagerException.php rename to src/Tools/Console/EntityManagerProvider/UnknownManagerException.php diff --git a/lib/Doctrine/ORM/Tools/Console/MetadataFilter.php b/src/Tools/Console/MetadataFilter.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Console/MetadataFilter.php rename to src/Tools/Console/MetadataFilter.php diff --git a/lib/Doctrine/ORM/Tools/Debug.php b/src/Tools/Debug.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Debug.php rename to src/Tools/Debug.php diff --git a/lib/Doctrine/ORM/Tools/DebugUnitOfWorkListener.php b/src/Tools/DebugUnitOfWorkListener.php similarity index 100% rename from lib/Doctrine/ORM/Tools/DebugUnitOfWorkListener.php rename to src/Tools/DebugUnitOfWorkListener.php diff --git a/lib/Doctrine/ORM/Tools/Event/GenerateSchemaEventArgs.php b/src/Tools/Event/GenerateSchemaEventArgs.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Event/GenerateSchemaEventArgs.php rename to src/Tools/Event/GenerateSchemaEventArgs.php diff --git a/lib/Doctrine/ORM/Tools/Event/GenerateSchemaTableEventArgs.php b/src/Tools/Event/GenerateSchemaTableEventArgs.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Event/GenerateSchemaTableEventArgs.php rename to src/Tools/Event/GenerateSchemaTableEventArgs.php diff --git a/lib/Doctrine/ORM/Tools/Exception/MissingColumnException.php b/src/Tools/Exception/MissingColumnException.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Exception/MissingColumnException.php rename to src/Tools/Exception/MissingColumnException.php diff --git a/lib/Doctrine/ORM/Tools/Exception/NotSupported.php b/src/Tools/Exception/NotSupported.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Exception/NotSupported.php rename to src/Tools/Exception/NotSupported.php diff --git a/lib/Doctrine/ORM/Tools/Pagination/CountOutputWalker.php b/src/Tools/Pagination/CountOutputWalker.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Pagination/CountOutputWalker.php rename to src/Tools/Pagination/CountOutputWalker.php diff --git a/lib/Doctrine/ORM/Tools/Pagination/CountWalker.php b/src/Tools/Pagination/CountWalker.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Pagination/CountWalker.php rename to src/Tools/Pagination/CountWalker.php diff --git a/lib/Doctrine/ORM/Tools/Pagination/Exception/RowNumberOverFunctionNotEnabled.php b/src/Tools/Pagination/Exception/RowNumberOverFunctionNotEnabled.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Pagination/Exception/RowNumberOverFunctionNotEnabled.php rename to src/Tools/Pagination/Exception/RowNumberOverFunctionNotEnabled.php diff --git a/lib/Doctrine/ORM/Tools/Pagination/LimitSubqueryOutputWalker.php b/src/Tools/Pagination/LimitSubqueryOutputWalker.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Pagination/LimitSubqueryOutputWalker.php rename to src/Tools/Pagination/LimitSubqueryOutputWalker.php diff --git a/lib/Doctrine/ORM/Tools/Pagination/LimitSubqueryWalker.php b/src/Tools/Pagination/LimitSubqueryWalker.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Pagination/LimitSubqueryWalker.php rename to src/Tools/Pagination/LimitSubqueryWalker.php diff --git a/lib/Doctrine/ORM/Tools/Pagination/Paginator.php b/src/Tools/Pagination/Paginator.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Pagination/Paginator.php rename to src/Tools/Pagination/Paginator.php diff --git a/lib/Doctrine/ORM/Tools/Pagination/RootTypeWalker.php b/src/Tools/Pagination/RootTypeWalker.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Pagination/RootTypeWalker.php rename to src/Tools/Pagination/RootTypeWalker.php diff --git a/lib/Doctrine/ORM/Tools/Pagination/RowNumberOverFunction.php b/src/Tools/Pagination/RowNumberOverFunction.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Pagination/RowNumberOverFunction.php rename to src/Tools/Pagination/RowNumberOverFunction.php diff --git a/lib/Doctrine/ORM/Tools/Pagination/WhereInWalker.php b/src/Tools/Pagination/WhereInWalker.php similarity index 100% rename from lib/Doctrine/ORM/Tools/Pagination/WhereInWalker.php rename to src/Tools/Pagination/WhereInWalker.php diff --git a/lib/Doctrine/ORM/Tools/ResolveTargetEntityListener.php b/src/Tools/ResolveTargetEntityListener.php similarity index 100% rename from lib/Doctrine/ORM/Tools/ResolveTargetEntityListener.php rename to src/Tools/ResolveTargetEntityListener.php diff --git a/lib/Doctrine/ORM/Tools/SchemaTool.php b/src/Tools/SchemaTool.php similarity index 100% rename from lib/Doctrine/ORM/Tools/SchemaTool.php rename to src/Tools/SchemaTool.php diff --git a/lib/Doctrine/ORM/Tools/SchemaValidator.php b/src/Tools/SchemaValidator.php similarity index 100% rename from lib/Doctrine/ORM/Tools/SchemaValidator.php rename to src/Tools/SchemaValidator.php diff --git a/lib/Doctrine/ORM/Tools/ToolEvents.php b/src/Tools/ToolEvents.php similarity index 100% rename from lib/Doctrine/ORM/Tools/ToolEvents.php rename to src/Tools/ToolEvents.php diff --git a/lib/Doctrine/ORM/Tools/ToolsException.php b/src/Tools/ToolsException.php similarity index 100% rename from lib/Doctrine/ORM/Tools/ToolsException.php rename to src/Tools/ToolsException.php diff --git a/lib/Doctrine/ORM/TransactionRequiredException.php b/src/TransactionRequiredException.php similarity index 100% rename from lib/Doctrine/ORM/TransactionRequiredException.php rename to src/TransactionRequiredException.php diff --git a/lib/Doctrine/ORM/UnexpectedResultException.php b/src/UnexpectedResultException.php similarity index 100% rename from lib/Doctrine/ORM/UnexpectedResultException.php rename to src/UnexpectedResultException.php diff --git a/lib/Doctrine/ORM/UnitOfWork.php b/src/UnitOfWork.php similarity index 100% rename from lib/Doctrine/ORM/UnitOfWork.php rename to src/UnitOfWork.php diff --git a/lib/Doctrine/ORM/Utility/HierarchyDiscriminatorResolver.php b/src/Utility/HierarchyDiscriminatorResolver.php similarity index 100% rename from lib/Doctrine/ORM/Utility/HierarchyDiscriminatorResolver.php rename to src/Utility/HierarchyDiscriminatorResolver.php diff --git a/lib/Doctrine/ORM/Utility/IdentifierFlattener.php b/src/Utility/IdentifierFlattener.php similarity index 100% rename from lib/Doctrine/ORM/Utility/IdentifierFlattener.php rename to src/Utility/IdentifierFlattener.php diff --git a/lib/Doctrine/ORM/Utility/LockSqlHelper.php b/src/Utility/LockSqlHelper.php similarity index 100% rename from lib/Doctrine/ORM/Utility/LockSqlHelper.php rename to src/Utility/LockSqlHelper.php diff --git a/lib/Doctrine/ORM/Utility/PersisterHelper.php b/src/Utility/PersisterHelper.php similarity index 100% rename from lib/Doctrine/ORM/Utility/PersisterHelper.php rename to src/Utility/PersisterHelper.php diff --git a/tests/.gitignore b/tests/.gitignore index 7210405266d..7575448eba5 100644 --- a/tests/.gitignore +++ b/tests/.gitignore @@ -1,3 +1,3 @@ -Doctrine/Tests/Proxies/ -Doctrine/Tests/ORM/Proxy/generated/ -Doctrine/Tests/ORM/Tools/Export/export +Tests/Proxies/ +Tests/ORM/Proxy/generated/ +Tests/ORM/Tools/Export/export diff --git a/tests/Doctrine/Performance/ArrayResultFactory.php b/tests/Performance/ArrayResultFactory.php similarity index 100% rename from tests/Doctrine/Performance/ArrayResultFactory.php rename to tests/Performance/ArrayResultFactory.php diff --git a/tests/Doctrine/Performance/ChangeSet/UnitOfWorkComputeChangesBench.php b/tests/Performance/ChangeSet/UnitOfWorkComputeChangesBench.php similarity index 100% rename from tests/Doctrine/Performance/ChangeSet/UnitOfWorkComputeChangesBench.php rename to tests/Performance/ChangeSet/UnitOfWorkComputeChangesBench.php diff --git a/tests/Doctrine/Performance/EntityManagerFactory.php b/tests/Performance/EntityManagerFactory.php similarity index 100% rename from tests/Doctrine/Performance/EntityManagerFactory.php rename to tests/Performance/EntityManagerFactory.php diff --git a/tests/Doctrine/Performance/Hydration/MixedQueryFetchJoinArrayHydrationPerformanceBench.php b/tests/Performance/Hydration/MixedQueryFetchJoinArrayHydrationPerformanceBench.php similarity index 100% rename from tests/Doctrine/Performance/Hydration/MixedQueryFetchJoinArrayHydrationPerformanceBench.php rename to tests/Performance/Hydration/MixedQueryFetchJoinArrayHydrationPerformanceBench.php diff --git a/tests/Doctrine/Performance/Hydration/MixedQueryFetchJoinFullObjectHydrationPerformanceBench.php b/tests/Performance/Hydration/MixedQueryFetchJoinFullObjectHydrationPerformanceBench.php similarity index 100% rename from tests/Doctrine/Performance/Hydration/MixedQueryFetchJoinFullObjectHydrationPerformanceBench.php rename to tests/Performance/Hydration/MixedQueryFetchJoinFullObjectHydrationPerformanceBench.php diff --git a/tests/Doctrine/Performance/Hydration/SimpleHydrationBench.php b/tests/Performance/Hydration/SimpleHydrationBench.php similarity index 100% rename from tests/Doctrine/Performance/Hydration/SimpleHydrationBench.php rename to tests/Performance/Hydration/SimpleHydrationBench.php diff --git a/tests/Doctrine/Performance/Hydration/SimpleInsertPerformanceBench.php b/tests/Performance/Hydration/SimpleInsertPerformanceBench.php similarity index 100% rename from tests/Doctrine/Performance/Hydration/SimpleInsertPerformanceBench.php rename to tests/Performance/Hydration/SimpleInsertPerformanceBench.php diff --git a/tests/Doctrine/Performance/Hydration/SimpleQueryArrayHydrationPerformanceBench.php b/tests/Performance/Hydration/SimpleQueryArrayHydrationPerformanceBench.php similarity index 100% rename from tests/Doctrine/Performance/Hydration/SimpleQueryArrayHydrationPerformanceBench.php rename to tests/Performance/Hydration/SimpleQueryArrayHydrationPerformanceBench.php diff --git a/tests/Doctrine/Performance/Hydration/SimpleQueryFullObjectHydrationPerformanceBench.php b/tests/Performance/Hydration/SimpleQueryFullObjectHydrationPerformanceBench.php similarity index 100% rename from tests/Doctrine/Performance/Hydration/SimpleQueryFullObjectHydrationPerformanceBench.php rename to tests/Performance/Hydration/SimpleQueryFullObjectHydrationPerformanceBench.php diff --git a/tests/Doctrine/Performance/Hydration/SimpleQueryScalarHydrationPerformanceBench.php b/tests/Performance/Hydration/SimpleQueryScalarHydrationPerformanceBench.php similarity index 100% rename from tests/Doctrine/Performance/Hydration/SimpleQueryScalarHydrationPerformanceBench.php rename to tests/Performance/Hydration/SimpleQueryScalarHydrationPerformanceBench.php diff --git a/tests/Doctrine/Performance/Hydration/SingleTableInheritanceHydrationPerformanceBench.php b/tests/Performance/Hydration/SingleTableInheritanceHydrationPerformanceBench.php similarity index 100% rename from tests/Doctrine/Performance/Hydration/SingleTableInheritanceHydrationPerformanceBench.php rename to tests/Performance/Hydration/SingleTableInheritanceHydrationPerformanceBench.php diff --git a/tests/Doctrine/Performance/Hydration/SingleTableInheritanceInsertPerformanceBench.php b/tests/Performance/Hydration/SingleTableInheritanceInsertPerformanceBench.php similarity index 100% rename from tests/Doctrine/Performance/Hydration/SingleTableInheritanceInsertPerformanceBench.php rename to tests/Performance/Hydration/SingleTableInheritanceInsertPerformanceBench.php diff --git a/tests/Doctrine/Performance/LazyLoading/ProxyInitializationTimeBench.php b/tests/Performance/LazyLoading/ProxyInitializationTimeBench.php similarity index 100% rename from tests/Doctrine/Performance/LazyLoading/ProxyInitializationTimeBench.php rename to tests/Performance/LazyLoading/ProxyInitializationTimeBench.php diff --git a/tests/Doctrine/Performance/LazyLoading/ProxyInstantiationTimeBench.php b/tests/Performance/LazyLoading/ProxyInstantiationTimeBench.php similarity index 100% rename from tests/Doctrine/Performance/LazyLoading/ProxyInstantiationTimeBench.php rename to tests/Performance/LazyLoading/ProxyInstantiationTimeBench.php diff --git a/tests/Doctrine/Performance/Mock/NonLoadingPersister.php b/tests/Performance/Mock/NonLoadingPersister.php similarity index 100% rename from tests/Doctrine/Performance/Mock/NonLoadingPersister.php rename to tests/Performance/Mock/NonLoadingPersister.php diff --git a/tests/Doctrine/Performance/Mock/NonProxyLoadingEntityManager.php b/tests/Performance/Mock/NonProxyLoadingEntityManager.php similarity index 100% rename from tests/Doctrine/Performance/Mock/NonProxyLoadingEntityManager.php rename to tests/Performance/Mock/NonProxyLoadingEntityManager.php diff --git a/tests/Doctrine/Performance/Mock/NonProxyLoadingUnitOfWork.php b/tests/Performance/Mock/NonProxyLoadingUnitOfWork.php similarity index 100% rename from tests/Doctrine/Performance/Mock/NonProxyLoadingUnitOfWork.php rename to tests/Performance/Mock/NonProxyLoadingUnitOfWork.php diff --git a/tests/Doctrine/Performance/Query/QueryBoundParameterProcessingBench.php b/tests/Performance/Query/QueryBoundParameterProcessingBench.php similarity index 100% rename from tests/Doctrine/Performance/Query/QueryBoundParameterProcessingBench.php rename to tests/Performance/Query/QueryBoundParameterProcessingBench.php diff --git a/tests/Doctrine/StaticAnalysis/Mapping/class-metadata-constructor.php b/tests/StaticAnalysis/Mapping/class-metadata-constructor.php similarity index 100% rename from tests/Doctrine/StaticAnalysis/Mapping/class-metadata-constructor.php rename to tests/StaticAnalysis/Mapping/class-metadata-constructor.php diff --git a/tests/Doctrine/StaticAnalysis/Tools/Pagination/paginator-covariant.php b/tests/StaticAnalysis/Tools/Pagination/paginator-covariant.php similarity index 100% rename from tests/Doctrine/StaticAnalysis/Tools/Pagination/paginator-covariant.php rename to tests/StaticAnalysis/Tools/Pagination/paginator-covariant.php diff --git a/tests/Doctrine/StaticAnalysis/get-metadata.php b/tests/StaticAnalysis/get-metadata.php similarity index 100% rename from tests/Doctrine/StaticAnalysis/get-metadata.php rename to tests/StaticAnalysis/get-metadata.php diff --git a/tests/Doctrine/Tests/DbalExtensions/Connection.php b/tests/Tests/DbalExtensions/Connection.php similarity index 100% rename from tests/Doctrine/Tests/DbalExtensions/Connection.php rename to tests/Tests/DbalExtensions/Connection.php diff --git a/tests/Doctrine/Tests/DbalExtensions/QueryLog.php b/tests/Tests/DbalExtensions/QueryLog.php similarity index 100% rename from tests/Doctrine/Tests/DbalExtensions/QueryLog.php rename to tests/Tests/DbalExtensions/QueryLog.php diff --git a/tests/Doctrine/Tests/DbalExtensions/SqlLogger.php b/tests/Tests/DbalExtensions/SqlLogger.php similarity index 100% rename from tests/Doctrine/Tests/DbalExtensions/SqlLogger.php rename to tests/Tests/DbalExtensions/SqlLogger.php diff --git a/tests/Doctrine/Tests/DbalTypes/CustomIdObject.php b/tests/Tests/DbalTypes/CustomIdObject.php similarity index 100% rename from tests/Doctrine/Tests/DbalTypes/CustomIdObject.php rename to tests/Tests/DbalTypes/CustomIdObject.php diff --git a/tests/Doctrine/Tests/DbalTypes/CustomIdObjectType.php b/tests/Tests/DbalTypes/CustomIdObjectType.php similarity index 100% rename from tests/Doctrine/Tests/DbalTypes/CustomIdObjectType.php rename to tests/Tests/DbalTypes/CustomIdObjectType.php diff --git a/tests/Doctrine/Tests/DbalTypes/CustomIntType.php b/tests/Tests/DbalTypes/CustomIntType.php similarity index 100% rename from tests/Doctrine/Tests/DbalTypes/CustomIntType.php rename to tests/Tests/DbalTypes/CustomIntType.php diff --git a/tests/Doctrine/Tests/DbalTypes/GH8565EmployeePayloadType.php b/tests/Tests/DbalTypes/GH8565EmployeePayloadType.php similarity index 100% rename from tests/Doctrine/Tests/DbalTypes/GH8565EmployeePayloadType.php rename to tests/Tests/DbalTypes/GH8565EmployeePayloadType.php diff --git a/tests/Doctrine/Tests/DbalTypes/GH8565ManagerPayloadType.php b/tests/Tests/DbalTypes/GH8565ManagerPayloadType.php similarity index 100% rename from tests/Doctrine/Tests/DbalTypes/GH8565ManagerPayloadType.php rename to tests/Tests/DbalTypes/GH8565ManagerPayloadType.php diff --git a/tests/Doctrine/Tests/DbalTypes/NegativeToPositiveType.php b/tests/Tests/DbalTypes/NegativeToPositiveType.php similarity index 100% rename from tests/Doctrine/Tests/DbalTypes/NegativeToPositiveType.php rename to tests/Tests/DbalTypes/NegativeToPositiveType.php diff --git a/tests/Doctrine/Tests/DbalTypes/Rot13Type.php b/tests/Tests/DbalTypes/Rot13Type.php similarity index 100% rename from tests/Doctrine/Tests/DbalTypes/Rot13Type.php rename to tests/Tests/DbalTypes/Rot13Type.php diff --git a/tests/Doctrine/Tests/DbalTypes/UpperCaseStringType.php b/tests/Tests/DbalTypes/UpperCaseStringType.php similarity index 100% rename from tests/Doctrine/Tests/DbalTypes/UpperCaseStringType.php rename to tests/Tests/DbalTypes/UpperCaseStringType.php diff --git a/tests/Doctrine/Tests/EventListener/CacheMetadataListener.php b/tests/Tests/EventListener/CacheMetadataListener.php similarity index 100% rename from tests/Doctrine/Tests/EventListener/CacheMetadataListener.php rename to tests/Tests/EventListener/CacheMetadataListener.php diff --git a/tests/Doctrine/Tests/IterableTester.php b/tests/Tests/IterableTester.php similarity index 100% rename from tests/Doctrine/Tests/IterableTester.php rename to tests/Tests/IterableTester.php diff --git a/tests/Doctrine/Tests/Mocks/CacheEntryMock.php b/tests/Tests/Mocks/CacheEntryMock.php similarity index 100% rename from tests/Doctrine/Tests/Mocks/CacheEntryMock.php rename to tests/Tests/Mocks/CacheEntryMock.php diff --git a/tests/Doctrine/Tests/Mocks/CacheKeyMock.php b/tests/Tests/Mocks/CacheKeyMock.php similarity index 100% rename from tests/Doctrine/Tests/Mocks/CacheKeyMock.php rename to tests/Tests/Mocks/CacheKeyMock.php diff --git a/tests/Doctrine/Tests/Mocks/CacheRegionMock.php b/tests/Tests/Mocks/CacheRegionMock.php similarity index 100% rename from tests/Doctrine/Tests/Mocks/CacheRegionMock.php rename to tests/Tests/Mocks/CacheRegionMock.php diff --git a/tests/Doctrine/Tests/Mocks/CompatibilityType.php b/tests/Tests/Mocks/CompatibilityType.php similarity index 100% rename from tests/Doctrine/Tests/Mocks/CompatibilityType.php rename to tests/Tests/Mocks/CompatibilityType.php diff --git a/tests/Doctrine/Tests/Mocks/ConcurrentRegionMock.php b/tests/Tests/Mocks/ConcurrentRegionMock.php similarity index 100% rename from tests/Doctrine/Tests/Mocks/ConcurrentRegionMock.php rename to tests/Tests/Mocks/ConcurrentRegionMock.php diff --git a/tests/Doctrine/Tests/Mocks/CustomTreeWalkerJoin.php b/tests/Tests/Mocks/CustomTreeWalkerJoin.php similarity index 100% rename from tests/Doctrine/Tests/Mocks/CustomTreeWalkerJoin.php rename to tests/Tests/Mocks/CustomTreeWalkerJoin.php diff --git a/tests/Doctrine/Tests/Mocks/EntityManagerMock.php b/tests/Tests/Mocks/EntityManagerMock.php similarity index 100% rename from tests/Doctrine/Tests/Mocks/EntityManagerMock.php rename to tests/Tests/Mocks/EntityManagerMock.php diff --git a/tests/Doctrine/Tests/Mocks/EntityPersisterMock.php b/tests/Tests/Mocks/EntityPersisterMock.php similarity index 100% rename from tests/Doctrine/Tests/Mocks/EntityPersisterMock.php rename to tests/Tests/Mocks/EntityPersisterMock.php diff --git a/tests/Doctrine/Tests/Mocks/ExceptionConverterMock.php b/tests/Tests/Mocks/ExceptionConverterMock.php similarity index 100% rename from tests/Doctrine/Tests/Mocks/ExceptionConverterMock.php rename to tests/Tests/Mocks/ExceptionConverterMock.php diff --git a/tests/Doctrine/Tests/Mocks/MetadataDriverMock.php b/tests/Tests/Mocks/MetadataDriverMock.php similarity index 100% rename from tests/Doctrine/Tests/Mocks/MetadataDriverMock.php rename to tests/Tests/Mocks/MetadataDriverMock.php diff --git a/tests/Doctrine/Tests/Mocks/NullSqlWalker.php b/tests/Tests/Mocks/NullSqlWalker.php similarity index 100% rename from tests/Doctrine/Tests/Mocks/NullSqlWalker.php rename to tests/Tests/Mocks/NullSqlWalker.php diff --git a/tests/Doctrine/Tests/Mocks/SchemaManagerMock.php b/tests/Tests/Mocks/SchemaManagerMock.php similarity index 100% rename from tests/Doctrine/Tests/Mocks/SchemaManagerMock.php rename to tests/Tests/Mocks/SchemaManagerMock.php diff --git a/tests/Doctrine/Tests/Mocks/TimestampRegionMock.php b/tests/Tests/Mocks/TimestampRegionMock.php similarity index 100% rename from tests/Doctrine/Tests/Mocks/TimestampRegionMock.php rename to tests/Tests/Mocks/TimestampRegionMock.php diff --git a/tests/Doctrine/Tests/Mocks/UnitOfWorkMock.php b/tests/Tests/Mocks/UnitOfWorkMock.php similarity index 100% rename from tests/Doctrine/Tests/Mocks/UnitOfWorkMock.php rename to tests/Tests/Mocks/UnitOfWorkMock.php diff --git a/tests/Doctrine/Tests/Models/CMS/CmsAddress.php b/tests/Tests/Models/CMS/CmsAddress.php similarity index 100% rename from tests/Doctrine/Tests/Models/CMS/CmsAddress.php rename to tests/Tests/Models/CMS/CmsAddress.php diff --git a/tests/Doctrine/Tests/Models/CMS/CmsAddressDTO.php b/tests/Tests/Models/CMS/CmsAddressDTO.php similarity index 100% rename from tests/Doctrine/Tests/Models/CMS/CmsAddressDTO.php rename to tests/Tests/Models/CMS/CmsAddressDTO.php diff --git a/tests/Doctrine/Tests/Models/CMS/CmsAddressListener.php b/tests/Tests/Models/CMS/CmsAddressListener.php similarity index 100% rename from tests/Doctrine/Tests/Models/CMS/CmsAddressListener.php rename to tests/Tests/Models/CMS/CmsAddressListener.php diff --git a/tests/Doctrine/Tests/Models/CMS/CmsArticle.php b/tests/Tests/Models/CMS/CmsArticle.php similarity index 100% rename from tests/Doctrine/Tests/Models/CMS/CmsArticle.php rename to tests/Tests/Models/CMS/CmsArticle.php diff --git a/tests/Doctrine/Tests/Models/CMS/CmsComment.php b/tests/Tests/Models/CMS/CmsComment.php similarity index 100% rename from tests/Doctrine/Tests/Models/CMS/CmsComment.php rename to tests/Tests/Models/CMS/CmsComment.php diff --git a/tests/Doctrine/Tests/Models/CMS/CmsEmail.php b/tests/Tests/Models/CMS/CmsEmail.php similarity index 100% rename from tests/Doctrine/Tests/Models/CMS/CmsEmail.php rename to tests/Tests/Models/CMS/CmsEmail.php diff --git a/tests/Doctrine/Tests/Models/CMS/CmsEmployee.php b/tests/Tests/Models/CMS/CmsEmployee.php similarity index 100% rename from tests/Doctrine/Tests/Models/CMS/CmsEmployee.php rename to tests/Tests/Models/CMS/CmsEmployee.php diff --git a/tests/Doctrine/Tests/Models/CMS/CmsGroup.php b/tests/Tests/Models/CMS/CmsGroup.php similarity index 100% rename from tests/Doctrine/Tests/Models/CMS/CmsGroup.php rename to tests/Tests/Models/CMS/CmsGroup.php diff --git a/tests/Doctrine/Tests/Models/CMS/CmsPhonenumber.php b/tests/Tests/Models/CMS/CmsPhonenumber.php similarity index 100% rename from tests/Doctrine/Tests/Models/CMS/CmsPhonenumber.php rename to tests/Tests/Models/CMS/CmsPhonenumber.php diff --git a/tests/Doctrine/Tests/Models/CMS/CmsTag.php b/tests/Tests/Models/CMS/CmsTag.php similarity index 100% rename from tests/Doctrine/Tests/Models/CMS/CmsTag.php rename to tests/Tests/Models/CMS/CmsTag.php diff --git a/tests/Doctrine/Tests/Models/CMS/CmsUser.php b/tests/Tests/Models/CMS/CmsUser.php similarity index 100% rename from tests/Doctrine/Tests/Models/CMS/CmsUser.php rename to tests/Tests/Models/CMS/CmsUser.php diff --git a/tests/Doctrine/Tests/Models/CMS/CmsUserDTO.php b/tests/Tests/Models/CMS/CmsUserDTO.php similarity index 100% rename from tests/Doctrine/Tests/Models/CMS/CmsUserDTO.php rename to tests/Tests/Models/CMS/CmsUserDTO.php diff --git a/tests/Doctrine/Tests/Models/Cache/Action.php b/tests/Tests/Models/Cache/Action.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/Action.php rename to tests/Tests/Models/Cache/Action.php diff --git a/tests/Doctrine/Tests/Models/Cache/Address.php b/tests/Tests/Models/Cache/Address.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/Address.php rename to tests/Tests/Models/Cache/Address.php diff --git a/tests/Doctrine/Tests/Models/Cache/Attraction.php b/tests/Tests/Models/Cache/Attraction.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/Attraction.php rename to tests/Tests/Models/Cache/Attraction.php diff --git a/tests/Doctrine/Tests/Models/Cache/AttractionContactInfo.php b/tests/Tests/Models/Cache/AttractionContactInfo.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/AttractionContactInfo.php rename to tests/Tests/Models/Cache/AttractionContactInfo.php diff --git a/tests/Doctrine/Tests/Models/Cache/AttractionInfo.php b/tests/Tests/Models/Cache/AttractionInfo.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/AttractionInfo.php rename to tests/Tests/Models/Cache/AttractionInfo.php diff --git a/tests/Doctrine/Tests/Models/Cache/AttractionLocationInfo.php b/tests/Tests/Models/Cache/AttractionLocationInfo.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/AttractionLocationInfo.php rename to tests/Tests/Models/Cache/AttractionLocationInfo.php diff --git a/tests/Doctrine/Tests/Models/Cache/Bar.php b/tests/Tests/Models/Cache/Bar.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/Bar.php rename to tests/Tests/Models/Cache/Bar.php diff --git a/tests/Doctrine/Tests/Models/Cache/Beach.php b/tests/Tests/Models/Cache/Beach.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/Beach.php rename to tests/Tests/Models/Cache/Beach.php diff --git a/tests/Doctrine/Tests/Models/Cache/City.php b/tests/Tests/Models/Cache/City.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/City.php rename to tests/Tests/Models/Cache/City.php diff --git a/tests/Doctrine/Tests/Models/Cache/Client.php b/tests/Tests/Models/Cache/Client.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/Client.php rename to tests/Tests/Models/Cache/Client.php diff --git a/tests/Doctrine/Tests/Models/Cache/ComplexAction.php b/tests/Tests/Models/Cache/ComplexAction.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/ComplexAction.php rename to tests/Tests/Models/Cache/ComplexAction.php diff --git a/tests/Doctrine/Tests/Models/Cache/Country.php b/tests/Tests/Models/Cache/Country.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/Country.php rename to tests/Tests/Models/Cache/Country.php diff --git a/tests/Doctrine/Tests/Models/Cache/Flight.php b/tests/Tests/Models/Cache/Flight.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/Flight.php rename to tests/Tests/Models/Cache/Flight.php diff --git a/tests/Doctrine/Tests/Models/Cache/Login.php b/tests/Tests/Models/Cache/Login.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/Login.php rename to tests/Tests/Models/Cache/Login.php diff --git a/tests/Doctrine/Tests/Models/Cache/Person.php b/tests/Tests/Models/Cache/Person.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/Person.php rename to tests/Tests/Models/Cache/Person.php diff --git a/tests/Doctrine/Tests/Models/Cache/Restaurant.php b/tests/Tests/Models/Cache/Restaurant.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/Restaurant.php rename to tests/Tests/Models/Cache/Restaurant.php diff --git a/tests/Doctrine/Tests/Models/Cache/State.php b/tests/Tests/Models/Cache/State.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/State.php rename to tests/Tests/Models/Cache/State.php diff --git a/tests/Doctrine/Tests/Models/Cache/Token.php b/tests/Tests/Models/Cache/Token.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/Token.php rename to tests/Tests/Models/Cache/Token.php diff --git a/tests/Doctrine/Tests/Models/Cache/Travel.php b/tests/Tests/Models/Cache/Travel.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/Travel.php rename to tests/Tests/Models/Cache/Travel.php diff --git a/tests/Doctrine/Tests/Models/Cache/Traveler.php b/tests/Tests/Models/Cache/Traveler.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/Traveler.php rename to tests/Tests/Models/Cache/Traveler.php diff --git a/tests/Doctrine/Tests/Models/Cache/TravelerProfile.php b/tests/Tests/Models/Cache/TravelerProfile.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/TravelerProfile.php rename to tests/Tests/Models/Cache/TravelerProfile.php diff --git a/tests/Doctrine/Tests/Models/Cache/TravelerProfileInfo.php b/tests/Tests/Models/Cache/TravelerProfileInfo.php similarity index 100% rename from tests/Doctrine/Tests/Models/Cache/TravelerProfileInfo.php rename to tests/Tests/Models/Cache/TravelerProfileInfo.php diff --git a/tests/Doctrine/Tests/Models/Company/CompanyAuction.php b/tests/Tests/Models/Company/CompanyAuction.php similarity index 100% rename from tests/Doctrine/Tests/Models/Company/CompanyAuction.php rename to tests/Tests/Models/Company/CompanyAuction.php diff --git a/tests/Doctrine/Tests/Models/Company/CompanyCar.php b/tests/Tests/Models/Company/CompanyCar.php similarity index 100% rename from tests/Doctrine/Tests/Models/Company/CompanyCar.php rename to tests/Tests/Models/Company/CompanyCar.php diff --git a/tests/Doctrine/Tests/Models/Company/CompanyContract.php b/tests/Tests/Models/Company/CompanyContract.php similarity index 100% rename from tests/Doctrine/Tests/Models/Company/CompanyContract.php rename to tests/Tests/Models/Company/CompanyContract.php diff --git a/tests/Doctrine/Tests/Models/Company/CompanyContractListener.php b/tests/Tests/Models/Company/CompanyContractListener.php similarity index 100% rename from tests/Doctrine/Tests/Models/Company/CompanyContractListener.php rename to tests/Tests/Models/Company/CompanyContractListener.php diff --git a/tests/Doctrine/Tests/Models/Company/CompanyEmployee.php b/tests/Tests/Models/Company/CompanyEmployee.php similarity index 100% rename from tests/Doctrine/Tests/Models/Company/CompanyEmployee.php rename to tests/Tests/Models/Company/CompanyEmployee.php diff --git a/tests/Doctrine/Tests/Models/Company/CompanyEvent.php b/tests/Tests/Models/Company/CompanyEvent.php similarity index 100% rename from tests/Doctrine/Tests/Models/Company/CompanyEvent.php rename to tests/Tests/Models/Company/CompanyEvent.php diff --git a/tests/Doctrine/Tests/Models/Company/CompanyFixContract.php b/tests/Tests/Models/Company/CompanyFixContract.php similarity index 100% rename from tests/Doctrine/Tests/Models/Company/CompanyFixContract.php rename to tests/Tests/Models/Company/CompanyFixContract.php diff --git a/tests/Doctrine/Tests/Models/Company/CompanyFlexContract.php b/tests/Tests/Models/Company/CompanyFlexContract.php similarity index 100% rename from tests/Doctrine/Tests/Models/Company/CompanyFlexContract.php rename to tests/Tests/Models/Company/CompanyFlexContract.php diff --git a/tests/Doctrine/Tests/Models/Company/CompanyFlexUltraContract.php b/tests/Tests/Models/Company/CompanyFlexUltraContract.php similarity index 100% rename from tests/Doctrine/Tests/Models/Company/CompanyFlexUltraContract.php rename to tests/Tests/Models/Company/CompanyFlexUltraContract.php diff --git a/tests/Doctrine/Tests/Models/Company/CompanyFlexUltraContractListener.php b/tests/Tests/Models/Company/CompanyFlexUltraContractListener.php similarity index 100% rename from tests/Doctrine/Tests/Models/Company/CompanyFlexUltraContractListener.php rename to tests/Tests/Models/Company/CompanyFlexUltraContractListener.php diff --git a/tests/Doctrine/Tests/Models/Company/CompanyManager.php b/tests/Tests/Models/Company/CompanyManager.php similarity index 100% rename from tests/Doctrine/Tests/Models/Company/CompanyManager.php rename to tests/Tests/Models/Company/CompanyManager.php diff --git a/tests/Doctrine/Tests/Models/Company/CompanyOrganization.php b/tests/Tests/Models/Company/CompanyOrganization.php similarity index 100% rename from tests/Doctrine/Tests/Models/Company/CompanyOrganization.php rename to tests/Tests/Models/Company/CompanyOrganization.php diff --git a/tests/Doctrine/Tests/Models/Company/CompanyPerson.php b/tests/Tests/Models/Company/CompanyPerson.php similarity index 100% rename from tests/Doctrine/Tests/Models/Company/CompanyPerson.php rename to tests/Tests/Models/Company/CompanyPerson.php diff --git a/tests/Doctrine/Tests/Models/Company/CompanyRaffle.php b/tests/Tests/Models/Company/CompanyRaffle.php similarity index 100% rename from tests/Doctrine/Tests/Models/Company/CompanyRaffle.php rename to tests/Tests/Models/Company/CompanyRaffle.php diff --git a/tests/Doctrine/Tests/Models/CompositeKeyInheritance/JoinedChildClass.php b/tests/Tests/Models/CompositeKeyInheritance/JoinedChildClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/CompositeKeyInheritance/JoinedChildClass.php rename to tests/Tests/Models/CompositeKeyInheritance/JoinedChildClass.php diff --git a/tests/Doctrine/Tests/Models/CompositeKeyInheritance/JoinedDerivedChildClass.php b/tests/Tests/Models/CompositeKeyInheritance/JoinedDerivedChildClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/CompositeKeyInheritance/JoinedDerivedChildClass.php rename to tests/Tests/Models/CompositeKeyInheritance/JoinedDerivedChildClass.php diff --git a/tests/Doctrine/Tests/Models/CompositeKeyInheritance/JoinedDerivedIdentityClass.php b/tests/Tests/Models/CompositeKeyInheritance/JoinedDerivedIdentityClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/CompositeKeyInheritance/JoinedDerivedIdentityClass.php rename to tests/Tests/Models/CompositeKeyInheritance/JoinedDerivedIdentityClass.php diff --git a/tests/Doctrine/Tests/Models/CompositeKeyInheritance/JoinedDerivedRootClass.php b/tests/Tests/Models/CompositeKeyInheritance/JoinedDerivedRootClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/CompositeKeyInheritance/JoinedDerivedRootClass.php rename to tests/Tests/Models/CompositeKeyInheritance/JoinedDerivedRootClass.php diff --git a/tests/Doctrine/Tests/Models/CompositeKeyInheritance/JoinedRootClass.php b/tests/Tests/Models/CompositeKeyInheritance/JoinedRootClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/CompositeKeyInheritance/JoinedRootClass.php rename to tests/Tests/Models/CompositeKeyInheritance/JoinedRootClass.php diff --git a/tests/Doctrine/Tests/Models/CompositeKeyInheritance/SingleChildClass.php b/tests/Tests/Models/CompositeKeyInheritance/SingleChildClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/CompositeKeyInheritance/SingleChildClass.php rename to tests/Tests/Models/CompositeKeyInheritance/SingleChildClass.php diff --git a/tests/Doctrine/Tests/Models/CompositeKeyInheritance/SingleRootClass.php b/tests/Tests/Models/CompositeKeyInheritance/SingleRootClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/CompositeKeyInheritance/SingleRootClass.php rename to tests/Tests/Models/CompositeKeyInheritance/SingleRootClass.php diff --git a/tests/Doctrine/Tests/Models/CustomType/CustomIdObjectTypeChild.php b/tests/Tests/Models/CustomType/CustomIdObjectTypeChild.php similarity index 100% rename from tests/Doctrine/Tests/Models/CustomType/CustomIdObjectTypeChild.php rename to tests/Tests/Models/CustomType/CustomIdObjectTypeChild.php diff --git a/tests/Doctrine/Tests/Models/CustomType/CustomIdObjectTypeParent.php b/tests/Tests/Models/CustomType/CustomIdObjectTypeParent.php similarity index 100% rename from tests/Doctrine/Tests/Models/CustomType/CustomIdObjectTypeParent.php rename to tests/Tests/Models/CustomType/CustomIdObjectTypeParent.php diff --git a/tests/Doctrine/Tests/Models/CustomType/CustomTypeChild.php b/tests/Tests/Models/CustomType/CustomTypeChild.php similarity index 100% rename from tests/Doctrine/Tests/Models/CustomType/CustomTypeChild.php rename to tests/Tests/Models/CustomType/CustomTypeChild.php diff --git a/tests/Doctrine/Tests/Models/CustomType/CustomTypeParent.php b/tests/Tests/Models/CustomType/CustomTypeParent.php similarity index 100% rename from tests/Doctrine/Tests/Models/CustomType/CustomTypeParent.php rename to tests/Tests/Models/CustomType/CustomTypeParent.php diff --git a/tests/Doctrine/Tests/Models/CustomType/CustomTypeUpperCase.php b/tests/Tests/Models/CustomType/CustomTypeUpperCase.php similarity index 100% rename from tests/Doctrine/Tests/Models/CustomType/CustomTypeUpperCase.php rename to tests/Tests/Models/CustomType/CustomTypeUpperCase.php diff --git a/tests/Doctrine/Tests/Models/DDC117/DDC117ApproveChanges.php b/tests/Tests/Models/DDC117/DDC117ApproveChanges.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC117/DDC117ApproveChanges.php rename to tests/Tests/Models/DDC117/DDC117ApproveChanges.php diff --git a/tests/Doctrine/Tests/Models/DDC117/DDC117Article.php b/tests/Tests/Models/DDC117/DDC117Article.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC117/DDC117Article.php rename to tests/Tests/Models/DDC117/DDC117Article.php diff --git a/tests/Doctrine/Tests/Models/DDC117/DDC117ArticleDetails.php b/tests/Tests/Models/DDC117/DDC117ArticleDetails.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC117/DDC117ArticleDetails.php rename to tests/Tests/Models/DDC117/DDC117ArticleDetails.php diff --git a/tests/Doctrine/Tests/Models/DDC117/DDC117Editor.php b/tests/Tests/Models/DDC117/DDC117Editor.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC117/DDC117Editor.php rename to tests/Tests/Models/DDC117/DDC117Editor.php diff --git a/tests/Doctrine/Tests/Models/DDC117/DDC117Link.php b/tests/Tests/Models/DDC117/DDC117Link.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC117/DDC117Link.php rename to tests/Tests/Models/DDC117/DDC117Link.php diff --git a/tests/Doctrine/Tests/Models/DDC117/DDC117Reference.php b/tests/Tests/Models/DDC117/DDC117Reference.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC117/DDC117Reference.php rename to tests/Tests/Models/DDC117/DDC117Reference.php diff --git a/tests/Doctrine/Tests/Models/DDC117/DDC117Translation.php b/tests/Tests/Models/DDC117/DDC117Translation.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC117/DDC117Translation.php rename to tests/Tests/Models/DDC117/DDC117Translation.php diff --git a/tests/Doctrine/Tests/Models/DDC1476/DDC1476EntityWithDefaultFieldType.php b/tests/Tests/Models/DDC1476/DDC1476EntityWithDefaultFieldType.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC1476/DDC1476EntityWithDefaultFieldType.php rename to tests/Tests/Models/DDC1476/DDC1476EntityWithDefaultFieldType.php diff --git a/tests/Doctrine/Tests/Models/DDC1590/DDC1590Entity.php b/tests/Tests/Models/DDC1590/DDC1590Entity.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC1590/DDC1590Entity.php rename to tests/Tests/Models/DDC1590/DDC1590Entity.php diff --git a/tests/Doctrine/Tests/Models/DDC1590/DDC1590User.php b/tests/Tests/Models/DDC1590/DDC1590User.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC1590/DDC1590User.php rename to tests/Tests/Models/DDC1590/DDC1590User.php diff --git a/tests/Doctrine/Tests/Models/DDC1872/DDC1872Bar.php b/tests/Tests/Models/DDC1872/DDC1872Bar.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC1872/DDC1872Bar.php rename to tests/Tests/Models/DDC1872/DDC1872Bar.php diff --git a/tests/Doctrine/Tests/Models/DDC1872/DDC1872ExampleEntityWithOverride.php b/tests/Tests/Models/DDC1872/DDC1872ExampleEntityWithOverride.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC1872/DDC1872ExampleEntityWithOverride.php rename to tests/Tests/Models/DDC1872/DDC1872ExampleEntityWithOverride.php diff --git a/tests/Doctrine/Tests/Models/DDC1872/DDC1872ExampleEntityWithoutOverride.php b/tests/Tests/Models/DDC1872/DDC1872ExampleEntityWithoutOverride.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC1872/DDC1872ExampleEntityWithoutOverride.php rename to tests/Tests/Models/DDC1872/DDC1872ExampleEntityWithoutOverride.php diff --git a/tests/Doctrine/Tests/Models/DDC1872/DDC1872ExampleTrait.php b/tests/Tests/Models/DDC1872/DDC1872ExampleTrait.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC1872/DDC1872ExampleTrait.php rename to tests/Tests/Models/DDC1872/DDC1872ExampleTrait.php diff --git a/tests/Doctrine/Tests/Models/DDC2372/DDC2372Address.php b/tests/Tests/Models/DDC2372/DDC2372Address.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC2372/DDC2372Address.php rename to tests/Tests/Models/DDC2372/DDC2372Address.php diff --git a/tests/Doctrine/Tests/Models/DDC2372/DDC2372Admin.php b/tests/Tests/Models/DDC2372/DDC2372Admin.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC2372/DDC2372Admin.php rename to tests/Tests/Models/DDC2372/DDC2372Admin.php diff --git a/tests/Doctrine/Tests/Models/DDC2372/DDC2372User.php b/tests/Tests/Models/DDC2372/DDC2372User.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC2372/DDC2372User.php rename to tests/Tests/Models/DDC2372/DDC2372User.php diff --git a/tests/Doctrine/Tests/Models/DDC2372/Traits/DDC2372AddressAndAccessors.php b/tests/Tests/Models/DDC2372/Traits/DDC2372AddressAndAccessors.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC2372/Traits/DDC2372AddressAndAccessors.php rename to tests/Tests/Models/DDC2372/Traits/DDC2372AddressAndAccessors.php diff --git a/tests/Doctrine/Tests/Models/DDC2504/DDC2504ChildClass.php b/tests/Tests/Models/DDC2504/DDC2504ChildClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC2504/DDC2504ChildClass.php rename to tests/Tests/Models/DDC2504/DDC2504ChildClass.php diff --git a/tests/Doctrine/Tests/Models/DDC2504/DDC2504OtherClass.php b/tests/Tests/Models/DDC2504/DDC2504OtherClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC2504/DDC2504OtherClass.php rename to tests/Tests/Models/DDC2504/DDC2504OtherClass.php diff --git a/tests/Doctrine/Tests/Models/DDC2504/DDC2504RootClass.php b/tests/Tests/Models/DDC2504/DDC2504RootClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC2504/DDC2504RootClass.php rename to tests/Tests/Models/DDC2504/DDC2504RootClass.php diff --git a/tests/Doctrine/Tests/Models/DDC2825/ExplicitSchemaAndTable.php b/tests/Tests/Models/DDC2825/ExplicitSchemaAndTable.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC2825/ExplicitSchemaAndTable.php rename to tests/Tests/Models/DDC2825/ExplicitSchemaAndTable.php diff --git a/tests/Doctrine/Tests/Models/DDC2825/SchemaAndTableInTableName.php b/tests/Tests/Models/DDC2825/SchemaAndTableInTableName.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC2825/SchemaAndTableInTableName.php rename to tests/Tests/Models/DDC2825/SchemaAndTableInTableName.php diff --git a/tests/Doctrine/Tests/Models/DDC3231/DDC3231EntityRepository.php b/tests/Tests/Models/DDC3231/DDC3231EntityRepository.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3231/DDC3231EntityRepository.php rename to tests/Tests/Models/DDC3231/DDC3231EntityRepository.php diff --git a/tests/Doctrine/Tests/Models/DDC3231/DDC3231User1.php b/tests/Tests/Models/DDC3231/DDC3231User1.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3231/DDC3231User1.php rename to tests/Tests/Models/DDC3231/DDC3231User1.php diff --git a/tests/Doctrine/Tests/Models/DDC3231/DDC3231User1NoNamespace.php b/tests/Tests/Models/DDC3231/DDC3231User1NoNamespace.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3231/DDC3231User1NoNamespace.php rename to tests/Tests/Models/DDC3231/DDC3231User1NoNamespace.php diff --git a/tests/Doctrine/Tests/Models/DDC3231/DDC3231User2.php b/tests/Tests/Models/DDC3231/DDC3231User2.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3231/DDC3231User2.php rename to tests/Tests/Models/DDC3231/DDC3231User2.php diff --git a/tests/Doctrine/Tests/Models/DDC3231/DDC3231User2NoNamespace.php b/tests/Tests/Models/DDC3231/DDC3231User2NoNamespace.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3231/DDC3231User2NoNamespace.php rename to tests/Tests/Models/DDC3231/DDC3231User2NoNamespace.php diff --git a/tests/Doctrine/Tests/Models/DDC3293/DDC3293Address.php b/tests/Tests/Models/DDC3293/DDC3293Address.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3293/DDC3293Address.php rename to tests/Tests/Models/DDC3293/DDC3293Address.php diff --git a/tests/Doctrine/Tests/Models/DDC3293/DDC3293User.php b/tests/Tests/Models/DDC3293/DDC3293User.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3293/DDC3293User.php rename to tests/Tests/Models/DDC3293/DDC3293User.php diff --git a/tests/Doctrine/Tests/Models/DDC3293/DDC3293UserPrefixed.php b/tests/Tests/Models/DDC3293/DDC3293UserPrefixed.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3293/DDC3293UserPrefixed.php rename to tests/Tests/Models/DDC3293/DDC3293UserPrefixed.php diff --git a/tests/Doctrine/Tests/Models/DDC3346/DDC3346Article.php b/tests/Tests/Models/DDC3346/DDC3346Article.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3346/DDC3346Article.php rename to tests/Tests/Models/DDC3346/DDC3346Article.php diff --git a/tests/Doctrine/Tests/Models/DDC3346/DDC3346Author.php b/tests/Tests/Models/DDC3346/DDC3346Author.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3346/DDC3346Author.php rename to tests/Tests/Models/DDC3346/DDC3346Author.php diff --git a/tests/Doctrine/Tests/Models/DDC3579/DDC3579Admin.php b/tests/Tests/Models/DDC3579/DDC3579Admin.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3579/DDC3579Admin.php rename to tests/Tests/Models/DDC3579/DDC3579Admin.php diff --git a/tests/Doctrine/Tests/Models/DDC3579/DDC3579Group.php b/tests/Tests/Models/DDC3579/DDC3579Group.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3579/DDC3579Group.php rename to tests/Tests/Models/DDC3579/DDC3579Group.php diff --git a/tests/Doctrine/Tests/Models/DDC3579/DDC3579User.php b/tests/Tests/Models/DDC3579/DDC3579User.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3579/DDC3579User.php rename to tests/Tests/Models/DDC3579/DDC3579User.php diff --git a/tests/Doctrine/Tests/Models/DDC3597/DDC3597Image.php b/tests/Tests/Models/DDC3597/DDC3597Image.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3597/DDC3597Image.php rename to tests/Tests/Models/DDC3597/DDC3597Image.php diff --git a/tests/Doctrine/Tests/Models/DDC3597/DDC3597Media.php b/tests/Tests/Models/DDC3597/DDC3597Media.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3597/DDC3597Media.php rename to tests/Tests/Models/DDC3597/DDC3597Media.php diff --git a/tests/Doctrine/Tests/Models/DDC3597/DDC3597Root.php b/tests/Tests/Models/DDC3597/DDC3597Root.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3597/DDC3597Root.php rename to tests/Tests/Models/DDC3597/DDC3597Root.php diff --git a/tests/Doctrine/Tests/Models/DDC3597/Embeddable/DDC3597Dimension.php b/tests/Tests/Models/DDC3597/Embeddable/DDC3597Dimension.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3597/Embeddable/DDC3597Dimension.php rename to tests/Tests/Models/DDC3597/Embeddable/DDC3597Dimension.php diff --git a/tests/Doctrine/Tests/Models/DDC3699/DDC3699Child.php b/tests/Tests/Models/DDC3699/DDC3699Child.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3699/DDC3699Child.php rename to tests/Tests/Models/DDC3699/DDC3699Child.php diff --git a/tests/Doctrine/Tests/Models/DDC3699/DDC3699Parent.php b/tests/Tests/Models/DDC3699/DDC3699Parent.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3699/DDC3699Parent.php rename to tests/Tests/Models/DDC3699/DDC3699Parent.php diff --git a/tests/Doctrine/Tests/Models/DDC3699/DDC3699RelationMany.php b/tests/Tests/Models/DDC3699/DDC3699RelationMany.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3699/DDC3699RelationMany.php rename to tests/Tests/Models/DDC3699/DDC3699RelationMany.php diff --git a/tests/Doctrine/Tests/Models/DDC3699/DDC3699RelationOne.php b/tests/Tests/Models/DDC3699/DDC3699RelationOne.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3699/DDC3699RelationOne.php rename to tests/Tests/Models/DDC3699/DDC3699RelationOne.php diff --git a/tests/Doctrine/Tests/Models/DDC3711/DDC3711EntityA.php b/tests/Tests/Models/DDC3711/DDC3711EntityA.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3711/DDC3711EntityA.php rename to tests/Tests/Models/DDC3711/DDC3711EntityA.php diff --git a/tests/Doctrine/Tests/Models/DDC3711/DDC3711EntityB.php b/tests/Tests/Models/DDC3711/DDC3711EntityB.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3711/DDC3711EntityB.php rename to tests/Tests/Models/DDC3711/DDC3711EntityB.php diff --git a/tests/Doctrine/Tests/Models/DDC3899/DDC3899Contract.php b/tests/Tests/Models/DDC3899/DDC3899Contract.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3899/DDC3899Contract.php rename to tests/Tests/Models/DDC3899/DDC3899Contract.php diff --git a/tests/Doctrine/Tests/Models/DDC3899/DDC3899FixContract.php b/tests/Tests/Models/DDC3899/DDC3899FixContract.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3899/DDC3899FixContract.php rename to tests/Tests/Models/DDC3899/DDC3899FixContract.php diff --git a/tests/Doctrine/Tests/Models/DDC3899/DDC3899FlexContract.php b/tests/Tests/Models/DDC3899/DDC3899FlexContract.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3899/DDC3899FlexContract.php rename to tests/Tests/Models/DDC3899/DDC3899FlexContract.php diff --git a/tests/Doctrine/Tests/Models/DDC3899/DDC3899User.php b/tests/Tests/Models/DDC3899/DDC3899User.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC3899/DDC3899User.php rename to tests/Tests/Models/DDC3899/DDC3899User.php diff --git a/tests/Doctrine/Tests/Models/DDC4006/DDC4006User.php b/tests/Tests/Models/DDC4006/DDC4006User.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC4006/DDC4006User.php rename to tests/Tests/Models/DDC4006/DDC4006User.php diff --git a/tests/Doctrine/Tests/Models/DDC4006/DDC4006UserId.php b/tests/Tests/Models/DDC4006/DDC4006UserId.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC4006/DDC4006UserId.php rename to tests/Tests/Models/DDC4006/DDC4006UserId.php diff --git a/tests/Doctrine/Tests/Models/DDC5934/DDC5934BaseContract.php b/tests/Tests/Models/DDC5934/DDC5934BaseContract.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC5934/DDC5934BaseContract.php rename to tests/Tests/Models/DDC5934/DDC5934BaseContract.php diff --git a/tests/Doctrine/Tests/Models/DDC5934/DDC5934Contract.php b/tests/Tests/Models/DDC5934/DDC5934Contract.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC5934/DDC5934Contract.php rename to tests/Tests/Models/DDC5934/DDC5934Contract.php diff --git a/tests/Doctrine/Tests/Models/DDC5934/DDC5934Member.php b/tests/Tests/Models/DDC5934/DDC5934Member.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC5934/DDC5934Member.php rename to tests/Tests/Models/DDC5934/DDC5934Member.php diff --git a/tests/Doctrine/Tests/Models/DDC6412/DDC6412File.php b/tests/Tests/Models/DDC6412/DDC6412File.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC6412/DDC6412File.php rename to tests/Tests/Models/DDC6412/DDC6412File.php diff --git a/tests/Doctrine/Tests/Models/DDC753/DDC753CustomRepository.php b/tests/Tests/Models/DDC753/DDC753CustomRepository.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC753/DDC753CustomRepository.php rename to tests/Tests/Models/DDC753/DDC753CustomRepository.php diff --git a/tests/Doctrine/Tests/Models/DDC753/DDC753DefaultRepository.php b/tests/Tests/Models/DDC753/DDC753DefaultRepository.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC753/DDC753DefaultRepository.php rename to tests/Tests/Models/DDC753/DDC753DefaultRepository.php diff --git a/tests/Doctrine/Tests/Models/DDC753/DDC753EntityWithCustomRepository.php b/tests/Tests/Models/DDC753/DDC753EntityWithCustomRepository.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC753/DDC753EntityWithCustomRepository.php rename to tests/Tests/Models/DDC753/DDC753EntityWithCustomRepository.php diff --git a/tests/Doctrine/Tests/Models/DDC753/DDC753EntityWithDefaultCustomRepository.php b/tests/Tests/Models/DDC753/DDC753EntityWithDefaultCustomRepository.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC753/DDC753EntityWithDefaultCustomRepository.php rename to tests/Tests/Models/DDC753/DDC753EntityWithDefaultCustomRepository.php diff --git a/tests/Doctrine/Tests/Models/DDC753/DDC753EntityWithInvalidRepository.php b/tests/Tests/Models/DDC753/DDC753EntityWithInvalidRepository.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC753/DDC753EntityWithInvalidRepository.php rename to tests/Tests/Models/DDC753/DDC753EntityWithInvalidRepository.php diff --git a/tests/Doctrine/Tests/Models/DDC753/DDC753InvalidRepository.php b/tests/Tests/Models/DDC753/DDC753InvalidRepository.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC753/DDC753InvalidRepository.php rename to tests/Tests/Models/DDC753/DDC753InvalidRepository.php diff --git a/tests/Doctrine/Tests/Models/DDC869/DDC869ChequePayment.php b/tests/Tests/Models/DDC869/DDC869ChequePayment.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC869/DDC869ChequePayment.php rename to tests/Tests/Models/DDC869/DDC869ChequePayment.php diff --git a/tests/Doctrine/Tests/Models/DDC869/DDC869CreditCardPayment.php b/tests/Tests/Models/DDC869/DDC869CreditCardPayment.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC869/DDC869CreditCardPayment.php rename to tests/Tests/Models/DDC869/DDC869CreditCardPayment.php diff --git a/tests/Doctrine/Tests/Models/DDC869/DDC869Payment.php b/tests/Tests/Models/DDC869/DDC869Payment.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC869/DDC869Payment.php rename to tests/Tests/Models/DDC869/DDC869Payment.php diff --git a/tests/Doctrine/Tests/Models/DDC869/DDC869PaymentRepository.php b/tests/Tests/Models/DDC869/DDC869PaymentRepository.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC869/DDC869PaymentRepository.php rename to tests/Tests/Models/DDC869/DDC869PaymentRepository.php diff --git a/tests/Doctrine/Tests/Models/DDC889/DDC889Class.php b/tests/Tests/Models/DDC889/DDC889Class.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC889/DDC889Class.php rename to tests/Tests/Models/DDC889/DDC889Class.php diff --git a/tests/Doctrine/Tests/Models/DDC889/DDC889Entity.php b/tests/Tests/Models/DDC889/DDC889Entity.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC889/DDC889Entity.php rename to tests/Tests/Models/DDC889/DDC889Entity.php diff --git a/tests/Doctrine/Tests/Models/DDC889/DDC889SuperClass.php b/tests/Tests/Models/DDC889/DDC889SuperClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC889/DDC889SuperClass.php rename to tests/Tests/Models/DDC889/DDC889SuperClass.php diff --git a/tests/Doctrine/Tests/Models/DDC964/DDC964Address.php b/tests/Tests/Models/DDC964/DDC964Address.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC964/DDC964Address.php rename to tests/Tests/Models/DDC964/DDC964Address.php diff --git a/tests/Doctrine/Tests/Models/DDC964/DDC964Admin.php b/tests/Tests/Models/DDC964/DDC964Admin.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC964/DDC964Admin.php rename to tests/Tests/Models/DDC964/DDC964Admin.php diff --git a/tests/Doctrine/Tests/Models/DDC964/DDC964Group.php b/tests/Tests/Models/DDC964/DDC964Group.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC964/DDC964Group.php rename to tests/Tests/Models/DDC964/DDC964Group.php diff --git a/tests/Doctrine/Tests/Models/DDC964/DDC964Guest.php b/tests/Tests/Models/DDC964/DDC964Guest.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC964/DDC964Guest.php rename to tests/Tests/Models/DDC964/DDC964Guest.php diff --git a/tests/Doctrine/Tests/Models/DDC964/DDC964User.php b/tests/Tests/Models/DDC964/DDC964User.php similarity index 100% rename from tests/Doctrine/Tests/Models/DDC964/DDC964User.php rename to tests/Tests/Models/DDC964/DDC964User.php diff --git a/tests/Doctrine/Tests/Models/DataTransferObjects/DtoWithArrayOfEnums.php b/tests/Tests/Models/DataTransferObjects/DtoWithArrayOfEnums.php similarity index 100% rename from tests/Doctrine/Tests/Models/DataTransferObjects/DtoWithArrayOfEnums.php rename to tests/Tests/Models/DataTransferObjects/DtoWithArrayOfEnums.php diff --git a/tests/Doctrine/Tests/Models/DataTransferObjects/DtoWithEnum.php b/tests/Tests/Models/DataTransferObjects/DtoWithEnum.php similarity index 100% rename from tests/Doctrine/Tests/Models/DataTransferObjects/DtoWithEnum.php rename to tests/Tests/Models/DataTransferObjects/DtoWithEnum.php diff --git a/tests/Doctrine/Tests/Models/DirectoryTree/AbstractContentItem.php b/tests/Tests/Models/DirectoryTree/AbstractContentItem.php similarity index 100% rename from tests/Doctrine/Tests/Models/DirectoryTree/AbstractContentItem.php rename to tests/Tests/Models/DirectoryTree/AbstractContentItem.php diff --git a/tests/Doctrine/Tests/Models/DirectoryTree/Directory.php b/tests/Tests/Models/DirectoryTree/Directory.php similarity index 100% rename from tests/Doctrine/Tests/Models/DirectoryTree/Directory.php rename to tests/Tests/Models/DirectoryTree/Directory.php diff --git a/tests/Doctrine/Tests/Models/DirectoryTree/File.php b/tests/Tests/Models/DirectoryTree/File.php similarity index 100% rename from tests/Doctrine/Tests/Models/DirectoryTree/File.php rename to tests/Tests/Models/DirectoryTree/File.php diff --git a/tests/Doctrine/Tests/Models/ECommerce/ECommerceCart.php b/tests/Tests/Models/ECommerce/ECommerceCart.php similarity index 100% rename from tests/Doctrine/Tests/Models/ECommerce/ECommerceCart.php rename to tests/Tests/Models/ECommerce/ECommerceCart.php diff --git a/tests/Doctrine/Tests/Models/ECommerce/ECommerceCategory.php b/tests/Tests/Models/ECommerce/ECommerceCategory.php similarity index 100% rename from tests/Doctrine/Tests/Models/ECommerce/ECommerceCategory.php rename to tests/Tests/Models/ECommerce/ECommerceCategory.php diff --git a/tests/Doctrine/Tests/Models/ECommerce/ECommerceCustomer.php b/tests/Tests/Models/ECommerce/ECommerceCustomer.php similarity index 100% rename from tests/Doctrine/Tests/Models/ECommerce/ECommerceCustomer.php rename to tests/Tests/Models/ECommerce/ECommerceCustomer.php diff --git a/tests/Doctrine/Tests/Models/ECommerce/ECommerceFeature.php b/tests/Tests/Models/ECommerce/ECommerceFeature.php similarity index 100% rename from tests/Doctrine/Tests/Models/ECommerce/ECommerceFeature.php rename to tests/Tests/Models/ECommerce/ECommerceFeature.php diff --git a/tests/Doctrine/Tests/Models/ECommerce/ECommerceProduct.php b/tests/Tests/Models/ECommerce/ECommerceProduct.php similarity index 100% rename from tests/Doctrine/Tests/Models/ECommerce/ECommerceProduct.php rename to tests/Tests/Models/ECommerce/ECommerceProduct.php diff --git a/tests/Doctrine/Tests/Models/ECommerce/ECommerceShipping.php b/tests/Tests/Models/ECommerce/ECommerceShipping.php similarity index 100% rename from tests/Doctrine/Tests/Models/ECommerce/ECommerceShipping.php rename to tests/Tests/Models/ECommerce/ECommerceShipping.php diff --git a/tests/Doctrine/Tests/Models/Enums/AccessLevel.php b/tests/Tests/Models/Enums/AccessLevel.php similarity index 100% rename from tests/Doctrine/Tests/Models/Enums/AccessLevel.php rename to tests/Tests/Models/Enums/AccessLevel.php diff --git a/tests/Doctrine/Tests/Models/Enums/Card.php b/tests/Tests/Models/Enums/Card.php similarity index 100% rename from tests/Doctrine/Tests/Models/Enums/Card.php rename to tests/Tests/Models/Enums/Card.php diff --git a/tests/Doctrine/Tests/Models/Enums/CardWithDefault.php b/tests/Tests/Models/Enums/CardWithDefault.php similarity index 100% rename from tests/Doctrine/Tests/Models/Enums/CardWithDefault.php rename to tests/Tests/Models/Enums/CardWithDefault.php diff --git a/tests/Doctrine/Tests/Models/Enums/CardWithNullable.php b/tests/Tests/Models/Enums/CardWithNullable.php similarity index 100% rename from tests/Doctrine/Tests/Models/Enums/CardWithNullable.php rename to tests/Tests/Models/Enums/CardWithNullable.php diff --git a/tests/Doctrine/Tests/Models/Enums/City.php b/tests/Tests/Models/Enums/City.php similarity index 100% rename from tests/Doctrine/Tests/Models/Enums/City.php rename to tests/Tests/Models/Enums/City.php diff --git a/tests/Doctrine/Tests/Models/Enums/Product.php b/tests/Tests/Models/Enums/Product.php similarity index 100% rename from tests/Doctrine/Tests/Models/Enums/Product.php rename to tests/Tests/Models/Enums/Product.php diff --git a/tests/Doctrine/Tests/Models/Enums/Quantity.php b/tests/Tests/Models/Enums/Quantity.php similarity index 100% rename from tests/Doctrine/Tests/Models/Enums/Quantity.php rename to tests/Tests/Models/Enums/Quantity.php diff --git a/tests/Doctrine/Tests/Models/Enums/Scale.php b/tests/Tests/Models/Enums/Scale.php similarity index 100% rename from tests/Doctrine/Tests/Models/Enums/Scale.php rename to tests/Tests/Models/Enums/Scale.php diff --git a/tests/Doctrine/Tests/Models/Enums/Suit.php b/tests/Tests/Models/Enums/Suit.php similarity index 100% rename from tests/Doctrine/Tests/Models/Enums/Suit.php rename to tests/Tests/Models/Enums/Suit.php diff --git a/tests/Doctrine/Tests/Models/Enums/TypedCard.php b/tests/Tests/Models/Enums/TypedCard.php similarity index 100% rename from tests/Doctrine/Tests/Models/Enums/TypedCard.php rename to tests/Tests/Models/Enums/TypedCard.php diff --git a/tests/Doctrine/Tests/Models/Enums/TypedCardEnumCompositeId.php b/tests/Tests/Models/Enums/TypedCardEnumCompositeId.php similarity index 100% rename from tests/Doctrine/Tests/Models/Enums/TypedCardEnumCompositeId.php rename to tests/Tests/Models/Enums/TypedCardEnumCompositeId.php diff --git a/tests/Doctrine/Tests/Models/Enums/TypedCardEnumId.php b/tests/Tests/Models/Enums/TypedCardEnumId.php similarity index 100% rename from tests/Doctrine/Tests/Models/Enums/TypedCardEnumId.php rename to tests/Tests/Models/Enums/TypedCardEnumId.php diff --git a/tests/Doctrine/Tests/Models/Enums/Unit.php b/tests/Tests/Models/Enums/Unit.php similarity index 100% rename from tests/Doctrine/Tests/Models/Enums/Unit.php rename to tests/Tests/Models/Enums/Unit.php diff --git a/tests/Doctrine/Tests/Models/Enums/UserStatus.php b/tests/Tests/Models/Enums/UserStatus.php similarity index 100% rename from tests/Doctrine/Tests/Models/Enums/UserStatus.php rename to tests/Tests/Models/Enums/UserStatus.php diff --git a/tests/Doctrine/Tests/Models/Forum/ForumAvatar.php b/tests/Tests/Models/Forum/ForumAvatar.php similarity index 100% rename from tests/Doctrine/Tests/Models/Forum/ForumAvatar.php rename to tests/Tests/Models/Forum/ForumAvatar.php diff --git a/tests/Doctrine/Tests/Models/Forum/ForumBoard.php b/tests/Tests/Models/Forum/ForumBoard.php similarity index 100% rename from tests/Doctrine/Tests/Models/Forum/ForumBoard.php rename to tests/Tests/Models/Forum/ForumBoard.php diff --git a/tests/Doctrine/Tests/Models/Forum/ForumCategory.php b/tests/Tests/Models/Forum/ForumCategory.php similarity index 100% rename from tests/Doctrine/Tests/Models/Forum/ForumCategory.php rename to tests/Tests/Models/Forum/ForumCategory.php diff --git a/tests/Doctrine/Tests/Models/Forum/ForumEntry.php b/tests/Tests/Models/Forum/ForumEntry.php similarity index 100% rename from tests/Doctrine/Tests/Models/Forum/ForumEntry.php rename to tests/Tests/Models/Forum/ForumEntry.php diff --git a/tests/Doctrine/Tests/Models/Forum/ForumUser.php b/tests/Tests/Models/Forum/ForumUser.php similarity index 100% rename from tests/Doctrine/Tests/Models/Forum/ForumUser.php rename to tests/Tests/Models/Forum/ForumUser.php diff --git a/tests/Doctrine/Tests/Models/GH10132/Complex.php b/tests/Tests/Models/GH10132/Complex.php similarity index 100% rename from tests/Doctrine/Tests/Models/GH10132/Complex.php rename to tests/Tests/Models/GH10132/Complex.php diff --git a/tests/Doctrine/Tests/Models/GH10132/ComplexChild.php b/tests/Tests/Models/GH10132/ComplexChild.php similarity index 100% rename from tests/Doctrine/Tests/Models/GH10132/ComplexChild.php rename to tests/Tests/Models/GH10132/ComplexChild.php diff --git a/tests/Doctrine/Tests/Models/GH10288/GH10288People.php b/tests/Tests/Models/GH10288/GH10288People.php similarity index 100% rename from tests/Doctrine/Tests/Models/GH10288/GH10288People.php rename to tests/Tests/Models/GH10288/GH10288People.php diff --git a/tests/Doctrine/Tests/Models/GH10334/GH10334Foo.php b/tests/Tests/Models/GH10334/GH10334Foo.php similarity index 100% rename from tests/Doctrine/Tests/Models/GH10334/GH10334Foo.php rename to tests/Tests/Models/GH10334/GH10334Foo.php diff --git a/tests/Doctrine/Tests/Models/GH10334/GH10334FooCollection.php b/tests/Tests/Models/GH10334/GH10334FooCollection.php similarity index 100% rename from tests/Doctrine/Tests/Models/GH10334/GH10334FooCollection.php rename to tests/Tests/Models/GH10334/GH10334FooCollection.php diff --git a/tests/Doctrine/Tests/Models/GH10334/GH10334Product.php b/tests/Tests/Models/GH10334/GH10334Product.php similarity index 100% rename from tests/Doctrine/Tests/Models/GH10334/GH10334Product.php rename to tests/Tests/Models/GH10334/GH10334Product.php diff --git a/tests/Doctrine/Tests/Models/GH10334/GH10334ProductType.php b/tests/Tests/Models/GH10334/GH10334ProductType.php similarity index 100% rename from tests/Doctrine/Tests/Models/GH10334/GH10334ProductType.php rename to tests/Tests/Models/GH10334/GH10334ProductType.php diff --git a/tests/Doctrine/Tests/Models/GH10334/GH10334ProductTypeId.php b/tests/Tests/Models/GH10334/GH10334ProductTypeId.php similarity index 100% rename from tests/Doctrine/Tests/Models/GH10334/GH10334ProductTypeId.php rename to tests/Tests/Models/GH10334/GH10334ProductTypeId.php diff --git a/tests/Doctrine/Tests/Models/GH10336/GH10336Entity.php b/tests/Tests/Models/GH10336/GH10336Entity.php similarity index 100% rename from tests/Doctrine/Tests/Models/GH10336/GH10336Entity.php rename to tests/Tests/Models/GH10336/GH10336Entity.php diff --git a/tests/Doctrine/Tests/Models/GH10336/GH10336Relation.php b/tests/Tests/Models/GH10336/GH10336Relation.php similarity index 100% rename from tests/Doctrine/Tests/Models/GH10336/GH10336Relation.php rename to tests/Tests/Models/GH10336/GH10336Relation.php diff --git a/tests/Doctrine/Tests/Models/GH7141/GH7141Article.php b/tests/Tests/Models/GH7141/GH7141Article.php similarity index 100% rename from tests/Doctrine/Tests/Models/GH7141/GH7141Article.php rename to tests/Tests/Models/GH7141/GH7141Article.php diff --git a/tests/Doctrine/Tests/Models/GH7316/GH7316Article.php b/tests/Tests/Models/GH7316/GH7316Article.php similarity index 100% rename from tests/Doctrine/Tests/Models/GH7316/GH7316Article.php rename to tests/Tests/Models/GH7316/GH7316Article.php diff --git a/tests/Doctrine/Tests/Models/GH7717/GH7717Child.php b/tests/Tests/Models/GH7717/GH7717Child.php similarity index 100% rename from tests/Doctrine/Tests/Models/GH7717/GH7717Child.php rename to tests/Tests/Models/GH7717/GH7717Child.php diff --git a/tests/Doctrine/Tests/Models/GH7717/GH7717Parent.php b/tests/Tests/Models/GH7717/GH7717Parent.php similarity index 100% rename from tests/Doctrine/Tests/Models/GH7717/GH7717Parent.php rename to tests/Tests/Models/GH7717/GH7717Parent.php diff --git a/tests/Doctrine/Tests/Models/GH8565/GH8565Employee.php b/tests/Tests/Models/GH8565/GH8565Employee.php similarity index 100% rename from tests/Doctrine/Tests/Models/GH8565/GH8565Employee.php rename to tests/Tests/Models/GH8565/GH8565Employee.php diff --git a/tests/Doctrine/Tests/Models/GH8565/GH8565Manager.php b/tests/Tests/Models/GH8565/GH8565Manager.php similarity index 100% rename from tests/Doctrine/Tests/Models/GH8565/GH8565Manager.php rename to tests/Tests/Models/GH8565/GH8565Manager.php diff --git a/tests/Doctrine/Tests/Models/GH8565/GH8565Person.php b/tests/Tests/Models/GH8565/GH8565Person.php similarity index 100% rename from tests/Doctrine/Tests/Models/GH8565/GH8565Person.php rename to tests/Tests/Models/GH8565/GH8565Person.php diff --git a/tests/Doctrine/Tests/Models/Generic/BooleanModel.php b/tests/Tests/Models/Generic/BooleanModel.php similarity index 100% rename from tests/Doctrine/Tests/Models/Generic/BooleanModel.php rename to tests/Tests/Models/Generic/BooleanModel.php diff --git a/tests/Doctrine/Tests/Models/Generic/DateTimeModel.php b/tests/Tests/Models/Generic/DateTimeModel.php similarity index 100% rename from tests/Doctrine/Tests/Models/Generic/DateTimeModel.php rename to tests/Tests/Models/Generic/DateTimeModel.php diff --git a/tests/Doctrine/Tests/Models/Generic/DecimalModel.php b/tests/Tests/Models/Generic/DecimalModel.php similarity index 100% rename from tests/Doctrine/Tests/Models/Generic/DecimalModel.php rename to tests/Tests/Models/Generic/DecimalModel.php diff --git a/tests/Doctrine/Tests/Models/Generic/NonAlphaColumnsEntity.php b/tests/Tests/Models/Generic/NonAlphaColumnsEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/Generic/NonAlphaColumnsEntity.php rename to tests/Tests/Models/Generic/NonAlphaColumnsEntity.php diff --git a/tests/Doctrine/Tests/Models/Generic/SerializationModel.php b/tests/Tests/Models/Generic/SerializationModel.php similarity index 100% rename from tests/Doctrine/Tests/Models/Generic/SerializationModel.php rename to tests/Tests/Models/Generic/SerializationModel.php diff --git a/tests/Doctrine/Tests/Models/GeoNames/Admin1.php b/tests/Tests/Models/GeoNames/Admin1.php similarity index 100% rename from tests/Doctrine/Tests/Models/GeoNames/Admin1.php rename to tests/Tests/Models/GeoNames/Admin1.php diff --git a/tests/Doctrine/Tests/Models/GeoNames/Admin1AlternateName.php b/tests/Tests/Models/GeoNames/Admin1AlternateName.php similarity index 100% rename from tests/Doctrine/Tests/Models/GeoNames/Admin1AlternateName.php rename to tests/Tests/Models/GeoNames/Admin1AlternateName.php diff --git a/tests/Doctrine/Tests/Models/GeoNames/City.php b/tests/Tests/Models/GeoNames/City.php similarity index 100% rename from tests/Doctrine/Tests/Models/GeoNames/City.php rename to tests/Tests/Models/GeoNames/City.php diff --git a/tests/Doctrine/Tests/Models/GeoNames/Country.php b/tests/Tests/Models/GeoNames/Country.php similarity index 100% rename from tests/Doctrine/Tests/Models/GeoNames/Country.php rename to tests/Tests/Models/GeoNames/Country.php diff --git a/tests/Doctrine/Tests/Models/Global/GlobalNamespaceModel.php b/tests/Tests/Models/Global/GlobalNamespaceModel.php similarity index 100% rename from tests/Doctrine/Tests/Models/Global/GlobalNamespaceModel.php rename to tests/Tests/Models/Global/GlobalNamespaceModel.php diff --git a/tests/Doctrine/Tests/Models/Hydration/EntityWithArrayDefaultArrayValueM2M.php b/tests/Tests/Models/Hydration/EntityWithArrayDefaultArrayValueM2M.php similarity index 100% rename from tests/Doctrine/Tests/Models/Hydration/EntityWithArrayDefaultArrayValueM2M.php rename to tests/Tests/Models/Hydration/EntityWithArrayDefaultArrayValueM2M.php diff --git a/tests/Doctrine/Tests/Models/Hydration/SimpleEntity.php b/tests/Tests/Models/Hydration/SimpleEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/Hydration/SimpleEntity.php rename to tests/Tests/Models/Hydration/SimpleEntity.php diff --git a/tests/Doctrine/Tests/Models/Issue5989/Issue5989Employee.php b/tests/Tests/Models/Issue5989/Issue5989Employee.php similarity index 100% rename from tests/Doctrine/Tests/Models/Issue5989/Issue5989Employee.php rename to tests/Tests/Models/Issue5989/Issue5989Employee.php diff --git a/tests/Doctrine/Tests/Models/Issue5989/Issue5989Manager.php b/tests/Tests/Models/Issue5989/Issue5989Manager.php similarity index 100% rename from tests/Doctrine/Tests/Models/Issue5989/Issue5989Manager.php rename to tests/Tests/Models/Issue5989/Issue5989Manager.php diff --git a/tests/Doctrine/Tests/Models/Issue5989/Issue5989Person.php b/tests/Tests/Models/Issue5989/Issue5989Person.php similarity index 100% rename from tests/Doctrine/Tests/Models/Issue5989/Issue5989Person.php rename to tests/Tests/Models/Issue5989/Issue5989Person.php diff --git a/tests/Doctrine/Tests/Models/Issue9300/Issue9300Child.php b/tests/Tests/Models/Issue9300/Issue9300Child.php similarity index 100% rename from tests/Doctrine/Tests/Models/Issue9300/Issue9300Child.php rename to tests/Tests/Models/Issue9300/Issue9300Child.php diff --git a/tests/Doctrine/Tests/Models/Issue9300/Issue9300Parent.php b/tests/Tests/Models/Issue9300/Issue9300Parent.php similarity index 100% rename from tests/Doctrine/Tests/Models/Issue9300/Issue9300Parent.php rename to tests/Tests/Models/Issue9300/Issue9300Parent.php diff --git a/tests/Doctrine/Tests/Models/JoinedInheritanceType/AnotherChildClass.php b/tests/Tests/Models/JoinedInheritanceType/AnotherChildClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/JoinedInheritanceType/AnotherChildClass.php rename to tests/Tests/Models/JoinedInheritanceType/AnotherChildClass.php diff --git a/tests/Doctrine/Tests/Models/JoinedInheritanceType/ChildClass.php b/tests/Tests/Models/JoinedInheritanceType/ChildClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/JoinedInheritanceType/ChildClass.php rename to tests/Tests/Models/JoinedInheritanceType/ChildClass.php diff --git a/tests/Doctrine/Tests/Models/JoinedInheritanceType/RootClass.php b/tests/Tests/Models/JoinedInheritanceType/RootClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/JoinedInheritanceType/RootClass.php rename to tests/Tests/Models/JoinedInheritanceType/RootClass.php diff --git a/tests/Doctrine/Tests/Models/Legacy/LegacyArticle.php b/tests/Tests/Models/Legacy/LegacyArticle.php similarity index 100% rename from tests/Doctrine/Tests/Models/Legacy/LegacyArticle.php rename to tests/Tests/Models/Legacy/LegacyArticle.php diff --git a/tests/Doctrine/Tests/Models/Legacy/LegacyCar.php b/tests/Tests/Models/Legacy/LegacyCar.php similarity index 100% rename from tests/Doctrine/Tests/Models/Legacy/LegacyCar.php rename to tests/Tests/Models/Legacy/LegacyCar.php diff --git a/tests/Doctrine/Tests/Models/Legacy/LegacyUser.php b/tests/Tests/Models/Legacy/LegacyUser.php similarity index 100% rename from tests/Doctrine/Tests/Models/Legacy/LegacyUser.php rename to tests/Tests/Models/Legacy/LegacyUser.php diff --git a/tests/Doctrine/Tests/Models/Legacy/LegacyUserReference.php b/tests/Tests/Models/Legacy/LegacyUserReference.php similarity index 100% rename from tests/Doctrine/Tests/Models/Legacy/LegacyUserReference.php rename to tests/Tests/Models/Legacy/LegacyUserReference.php diff --git a/tests/Doctrine/Tests/Models/ManyToManyPersister/ChildClass.php b/tests/Tests/Models/ManyToManyPersister/ChildClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/ManyToManyPersister/ChildClass.php rename to tests/Tests/Models/ManyToManyPersister/ChildClass.php diff --git a/tests/Doctrine/Tests/Models/ManyToManyPersister/OtherParentClass.php b/tests/Tests/Models/ManyToManyPersister/OtherParentClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/ManyToManyPersister/OtherParentClass.php rename to tests/Tests/Models/ManyToManyPersister/OtherParentClass.php diff --git a/tests/Doctrine/Tests/Models/ManyToManyPersister/ParentClass.php b/tests/Tests/Models/ManyToManyPersister/ParentClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/ManyToManyPersister/ParentClass.php rename to tests/Tests/Models/ManyToManyPersister/ParentClass.php diff --git a/tests/Doctrine/Tests/Models/MixedToOneIdentity/CompositeToOneKeyState.php b/tests/Tests/Models/MixedToOneIdentity/CompositeToOneKeyState.php similarity index 100% rename from tests/Doctrine/Tests/Models/MixedToOneIdentity/CompositeToOneKeyState.php rename to tests/Tests/Models/MixedToOneIdentity/CompositeToOneKeyState.php diff --git a/tests/Doctrine/Tests/Models/MixedToOneIdentity/Country.php b/tests/Tests/Models/MixedToOneIdentity/Country.php similarity index 100% rename from tests/Doctrine/Tests/Models/MixedToOneIdentity/Country.php rename to tests/Tests/Models/MixedToOneIdentity/Country.php diff --git a/tests/Doctrine/Tests/Models/Navigation/NavCountry.php b/tests/Tests/Models/Navigation/NavCountry.php similarity index 100% rename from tests/Doctrine/Tests/Models/Navigation/NavCountry.php rename to tests/Tests/Models/Navigation/NavCountry.php diff --git a/tests/Doctrine/Tests/Models/Navigation/NavPhotos.php b/tests/Tests/Models/Navigation/NavPhotos.php similarity index 100% rename from tests/Doctrine/Tests/Models/Navigation/NavPhotos.php rename to tests/Tests/Models/Navigation/NavPhotos.php diff --git a/tests/Doctrine/Tests/Models/Navigation/NavPointOfInterest.php b/tests/Tests/Models/Navigation/NavPointOfInterest.php similarity index 100% rename from tests/Doctrine/Tests/Models/Navigation/NavPointOfInterest.php rename to tests/Tests/Models/Navigation/NavPointOfInterest.php diff --git a/tests/Doctrine/Tests/Models/Navigation/NavTour.php b/tests/Tests/Models/Navigation/NavTour.php similarity index 100% rename from tests/Doctrine/Tests/Models/Navigation/NavTour.php rename to tests/Tests/Models/Navigation/NavTour.php diff --git a/tests/Doctrine/Tests/Models/Navigation/NavUser.php b/tests/Tests/Models/Navigation/NavUser.php similarity index 100% rename from tests/Doctrine/Tests/Models/Navigation/NavUser.php rename to tests/Tests/Models/Navigation/NavUser.php diff --git a/tests/Doctrine/Tests/Models/NonPublicSchemaJoins/User.php b/tests/Tests/Models/NonPublicSchemaJoins/User.php similarity index 100% rename from tests/Doctrine/Tests/Models/NonPublicSchemaJoins/User.php rename to tests/Tests/Models/NonPublicSchemaJoins/User.php diff --git a/tests/Doctrine/Tests/Models/NullDefault/NullDefaultColumn.php b/tests/Tests/Models/NullDefault/NullDefaultColumn.php similarity index 100% rename from tests/Doctrine/Tests/Models/NullDefault/NullDefaultColumn.php rename to tests/Tests/Models/NullDefault/NullDefaultColumn.php diff --git a/tests/Doctrine/Tests/Models/OneToOneInverseSideLoad/InverseSide.php b/tests/Tests/Models/OneToOneInverseSideLoad/InverseSide.php similarity index 100% rename from tests/Doctrine/Tests/Models/OneToOneInverseSideLoad/InverseSide.php rename to tests/Tests/Models/OneToOneInverseSideLoad/InverseSide.php diff --git a/tests/Doctrine/Tests/Models/OneToOneInverseSideLoad/OwningSide.php b/tests/Tests/Models/OneToOneInverseSideLoad/OwningSide.php similarity index 100% rename from tests/Doctrine/Tests/Models/OneToOneInverseSideLoad/OwningSide.php rename to tests/Tests/Models/OneToOneInverseSideLoad/OwningSide.php diff --git a/tests/Doctrine/Tests/Models/OneToOneSingleTableInheritance/Cat.php b/tests/Tests/Models/OneToOneSingleTableInheritance/Cat.php similarity index 100% rename from tests/Doctrine/Tests/Models/OneToOneSingleTableInheritance/Cat.php rename to tests/Tests/Models/OneToOneSingleTableInheritance/Cat.php diff --git a/tests/Doctrine/Tests/Models/OneToOneSingleTableInheritance/LitterBox.php b/tests/Tests/Models/OneToOneSingleTableInheritance/LitterBox.php similarity index 100% rename from tests/Doctrine/Tests/Models/OneToOneSingleTableInheritance/LitterBox.php rename to tests/Tests/Models/OneToOneSingleTableInheritance/LitterBox.php diff --git a/tests/Doctrine/Tests/Models/OneToOneSingleTableInheritance/Pet.php b/tests/Tests/Models/OneToOneSingleTableInheritance/Pet.php similarity index 100% rename from tests/Doctrine/Tests/Models/OneToOneSingleTableInheritance/Pet.php rename to tests/Tests/Models/OneToOneSingleTableInheritance/Pet.php diff --git a/tests/Doctrine/Tests/Models/Pagination/Company.php b/tests/Tests/Models/Pagination/Company.php similarity index 100% rename from tests/Doctrine/Tests/Models/Pagination/Company.php rename to tests/Tests/Models/Pagination/Company.php diff --git a/tests/Doctrine/Tests/Models/Pagination/Department.php b/tests/Tests/Models/Pagination/Department.php similarity index 100% rename from tests/Doctrine/Tests/Models/Pagination/Department.php rename to tests/Tests/Models/Pagination/Department.php diff --git a/tests/Doctrine/Tests/Models/Pagination/Logo.php b/tests/Tests/Models/Pagination/Logo.php similarity index 100% rename from tests/Doctrine/Tests/Models/Pagination/Logo.php rename to tests/Tests/Models/Pagination/Logo.php diff --git a/tests/Doctrine/Tests/Models/Pagination/User.php b/tests/Tests/Models/Pagination/User.php similarity index 100% rename from tests/Doctrine/Tests/Models/Pagination/User.php rename to tests/Tests/Models/Pagination/User.php diff --git a/tests/Doctrine/Tests/Models/Pagination/User1.php b/tests/Tests/Models/Pagination/User1.php similarity index 100% rename from tests/Doctrine/Tests/Models/Pagination/User1.php rename to tests/Tests/Models/Pagination/User1.php diff --git a/tests/Doctrine/Tests/Models/PersistentObject/PersistentCollectionContent.php b/tests/Tests/Models/PersistentObject/PersistentCollectionContent.php similarity index 100% rename from tests/Doctrine/Tests/Models/PersistentObject/PersistentCollectionContent.php rename to tests/Tests/Models/PersistentObject/PersistentCollectionContent.php diff --git a/tests/Doctrine/Tests/Models/PersistentObject/PersistentCollectionHolder.php b/tests/Tests/Models/PersistentObject/PersistentCollectionHolder.php similarity index 100% rename from tests/Doctrine/Tests/Models/PersistentObject/PersistentCollectionHolder.php rename to tests/Tests/Models/PersistentObject/PersistentCollectionHolder.php diff --git a/tests/Doctrine/Tests/Models/PersistentObject/PersistentEntity.php b/tests/Tests/Models/PersistentObject/PersistentEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/PersistentObject/PersistentEntity.php rename to tests/Tests/Models/PersistentObject/PersistentEntity.php diff --git a/tests/Doctrine/Tests/Models/Project/Project.php b/tests/Tests/Models/Project/Project.php similarity index 100% rename from tests/Doctrine/Tests/Models/Project/Project.php rename to tests/Tests/Models/Project/Project.php diff --git a/tests/Doctrine/Tests/Models/Project/ProjectId.php b/tests/Tests/Models/Project/ProjectId.php similarity index 100% rename from tests/Doctrine/Tests/Models/Project/ProjectId.php rename to tests/Tests/Models/Project/ProjectId.php diff --git a/tests/Doctrine/Tests/Models/Project/ProjectInvalidMapping.php b/tests/Tests/Models/Project/ProjectInvalidMapping.php similarity index 100% rename from tests/Doctrine/Tests/Models/Project/ProjectInvalidMapping.php rename to tests/Tests/Models/Project/ProjectInvalidMapping.php diff --git a/tests/Doctrine/Tests/Models/Project/ProjectName.php b/tests/Tests/Models/Project/ProjectName.php similarity index 100% rename from tests/Doctrine/Tests/Models/Project/ProjectName.php rename to tests/Tests/Models/Project/ProjectName.php diff --git a/tests/Doctrine/Tests/Models/Quote/Address.php b/tests/Tests/Models/Quote/Address.php similarity index 100% rename from tests/Doctrine/Tests/Models/Quote/Address.php rename to tests/Tests/Models/Quote/Address.php diff --git a/tests/Doctrine/Tests/Models/Quote/City.php b/tests/Tests/Models/Quote/City.php similarity index 100% rename from tests/Doctrine/Tests/Models/Quote/City.php rename to tests/Tests/Models/Quote/City.php diff --git a/tests/Doctrine/Tests/Models/Quote/FullAddress.php b/tests/Tests/Models/Quote/FullAddress.php similarity index 100% rename from tests/Doctrine/Tests/Models/Quote/FullAddress.php rename to tests/Tests/Models/Quote/FullAddress.php diff --git a/tests/Doctrine/Tests/Models/Quote/Group.php b/tests/Tests/Models/Quote/Group.php similarity index 100% rename from tests/Doctrine/Tests/Models/Quote/Group.php rename to tests/Tests/Models/Quote/Group.php diff --git a/tests/Doctrine/Tests/Models/Quote/NumericEntity.php b/tests/Tests/Models/Quote/NumericEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/Quote/NumericEntity.php rename to tests/Tests/Models/Quote/NumericEntity.php diff --git a/tests/Doctrine/Tests/Models/Quote/Phone.php b/tests/Tests/Models/Quote/Phone.php similarity index 100% rename from tests/Doctrine/Tests/Models/Quote/Phone.php rename to tests/Tests/Models/Quote/Phone.php diff --git a/tests/Doctrine/Tests/Models/Quote/User.php b/tests/Tests/Models/Quote/User.php similarity index 100% rename from tests/Doctrine/Tests/Models/Quote/User.php rename to tests/Tests/Models/Quote/User.php diff --git a/tests/Doctrine/Tests/Models/ReadonlyProperties/Author.php b/tests/Tests/Models/ReadonlyProperties/Author.php similarity index 100% rename from tests/Doctrine/Tests/Models/ReadonlyProperties/Author.php rename to tests/Tests/Models/ReadonlyProperties/Author.php diff --git a/tests/Doctrine/Tests/Models/ReadonlyProperties/Book.php b/tests/Tests/Models/ReadonlyProperties/Book.php similarity index 100% rename from tests/Doctrine/Tests/Models/ReadonlyProperties/Book.php rename to tests/Tests/Models/ReadonlyProperties/Book.php diff --git a/tests/Doctrine/Tests/Models/ReadonlyProperties/SimpleBook.php b/tests/Tests/Models/ReadonlyProperties/SimpleBook.php similarity index 100% rename from tests/Doctrine/Tests/Models/ReadonlyProperties/SimpleBook.php rename to tests/Tests/Models/ReadonlyProperties/SimpleBook.php diff --git a/tests/Doctrine/Tests/Models/Reflection/AbstractEmbeddable.php b/tests/Tests/Models/Reflection/AbstractEmbeddable.php similarity index 100% rename from tests/Doctrine/Tests/Models/Reflection/AbstractEmbeddable.php rename to tests/Tests/Models/Reflection/AbstractEmbeddable.php diff --git a/tests/Doctrine/Tests/Models/Reflection/ArrayObjectExtendingClass.php b/tests/Tests/Models/Reflection/ArrayObjectExtendingClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/Reflection/ArrayObjectExtendingClass.php rename to tests/Tests/Models/Reflection/ArrayObjectExtendingClass.php diff --git a/tests/Doctrine/Tests/Models/Reflection/ClassWithMixedProperties.php b/tests/Tests/Models/Reflection/ClassWithMixedProperties.php similarity index 100% rename from tests/Doctrine/Tests/Models/Reflection/ClassWithMixedProperties.php rename to tests/Tests/Models/Reflection/ClassWithMixedProperties.php diff --git a/tests/Doctrine/Tests/Models/Reflection/ConcreteEmbeddable.php b/tests/Tests/Models/Reflection/ConcreteEmbeddable.php similarity index 100% rename from tests/Doctrine/Tests/Models/Reflection/ConcreteEmbeddable.php rename to tests/Tests/Models/Reflection/ConcreteEmbeddable.php diff --git a/tests/Doctrine/Tests/Models/Reflection/ParentClass.php b/tests/Tests/Models/Reflection/ParentClass.php similarity index 100% rename from tests/Doctrine/Tests/Models/Reflection/ParentClass.php rename to tests/Tests/Models/Reflection/ParentClass.php diff --git a/tests/Doctrine/Tests/Models/Routing/RoutingLeg.php b/tests/Tests/Models/Routing/RoutingLeg.php similarity index 100% rename from tests/Doctrine/Tests/Models/Routing/RoutingLeg.php rename to tests/Tests/Models/Routing/RoutingLeg.php diff --git a/tests/Doctrine/Tests/Models/Routing/RoutingLocation.php b/tests/Tests/Models/Routing/RoutingLocation.php similarity index 100% rename from tests/Doctrine/Tests/Models/Routing/RoutingLocation.php rename to tests/Tests/Models/Routing/RoutingLocation.php diff --git a/tests/Doctrine/Tests/Models/Routing/RoutingRoute.php b/tests/Tests/Models/Routing/RoutingRoute.php similarity index 100% rename from tests/Doctrine/Tests/Models/Routing/RoutingRoute.php rename to tests/Tests/Models/Routing/RoutingRoute.php diff --git a/tests/Doctrine/Tests/Models/Routing/RoutingRouteBooking.php b/tests/Tests/Models/Routing/RoutingRouteBooking.php similarity index 100% rename from tests/Doctrine/Tests/Models/Routing/RoutingRouteBooking.php rename to tests/Tests/Models/Routing/RoutingRouteBooking.php diff --git a/tests/Doctrine/Tests/Models/StockExchange/Bond.php b/tests/Tests/Models/StockExchange/Bond.php similarity index 100% rename from tests/Doctrine/Tests/Models/StockExchange/Bond.php rename to tests/Tests/Models/StockExchange/Bond.php diff --git a/tests/Doctrine/Tests/Models/StockExchange/Market.php b/tests/Tests/Models/StockExchange/Market.php similarity index 100% rename from tests/Doctrine/Tests/Models/StockExchange/Market.php rename to tests/Tests/Models/StockExchange/Market.php diff --git a/tests/Doctrine/Tests/Models/StockExchange/Stock.php b/tests/Tests/Models/StockExchange/Stock.php similarity index 100% rename from tests/Doctrine/Tests/Models/StockExchange/Stock.php rename to tests/Tests/Models/StockExchange/Stock.php diff --git a/tests/Doctrine/Tests/Models/Taxi/Car.php b/tests/Tests/Models/Taxi/Car.php similarity index 100% rename from tests/Doctrine/Tests/Models/Taxi/Car.php rename to tests/Tests/Models/Taxi/Car.php diff --git a/tests/Doctrine/Tests/Models/Taxi/Driver.php b/tests/Tests/Models/Taxi/Driver.php similarity index 100% rename from tests/Doctrine/Tests/Models/Taxi/Driver.php rename to tests/Tests/Models/Taxi/Driver.php diff --git a/tests/Doctrine/Tests/Models/Taxi/PaidRide.php b/tests/Tests/Models/Taxi/PaidRide.php similarity index 100% rename from tests/Doctrine/Tests/Models/Taxi/PaidRide.php rename to tests/Tests/Models/Taxi/PaidRide.php diff --git a/tests/Doctrine/Tests/Models/Taxi/Ride.php b/tests/Tests/Models/Taxi/Ride.php similarity index 100% rename from tests/Doctrine/Tests/Models/Taxi/Ride.php rename to tests/Tests/Models/Taxi/Ride.php diff --git a/tests/Doctrine/Tests/Models/Tweet/Tweet.php b/tests/Tests/Models/Tweet/Tweet.php similarity index 100% rename from tests/Doctrine/Tests/Models/Tweet/Tweet.php rename to tests/Tests/Models/Tweet/Tweet.php diff --git a/tests/Doctrine/Tests/Models/Tweet/User.php b/tests/Tests/Models/Tweet/User.php similarity index 100% rename from tests/Doctrine/Tests/Models/Tweet/User.php rename to tests/Tests/Models/Tweet/User.php diff --git a/tests/Doctrine/Tests/Models/Tweet/UserList.php b/tests/Tests/Models/Tweet/UserList.php similarity index 100% rename from tests/Doctrine/Tests/Models/Tweet/UserList.php rename to tests/Tests/Models/Tweet/UserList.php diff --git a/tests/Doctrine/Tests/Models/TypedProperties/Contact.php b/tests/Tests/Models/TypedProperties/Contact.php similarity index 100% rename from tests/Doctrine/Tests/Models/TypedProperties/Contact.php rename to tests/Tests/Models/TypedProperties/Contact.php diff --git a/tests/Doctrine/Tests/Models/TypedProperties/UserTyped.php b/tests/Tests/Models/TypedProperties/UserTyped.php similarity index 100% rename from tests/Doctrine/Tests/Models/TypedProperties/UserTyped.php rename to tests/Tests/Models/TypedProperties/UserTyped.php diff --git a/tests/Doctrine/Tests/Models/TypedProperties/UserTypedWithCustomTypedField.php b/tests/Tests/Models/TypedProperties/UserTypedWithCustomTypedField.php similarity index 100% rename from tests/Doctrine/Tests/Models/TypedProperties/UserTypedWithCustomTypedField.php rename to tests/Tests/Models/TypedProperties/UserTypedWithCustomTypedField.php diff --git a/tests/Doctrine/Tests/Models/Upsertable/Insertable.php b/tests/Tests/Models/Upsertable/Insertable.php similarity index 100% rename from tests/Doctrine/Tests/Models/Upsertable/Insertable.php rename to tests/Tests/Models/Upsertable/Insertable.php diff --git a/tests/Doctrine/Tests/Models/Upsertable/Updatable.php b/tests/Tests/Models/Upsertable/Updatable.php similarity index 100% rename from tests/Doctrine/Tests/Models/Upsertable/Updatable.php rename to tests/Tests/Models/Upsertable/Updatable.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/AuxiliaryEntity.php b/tests/Tests/Models/ValueConversionType/AuxiliaryEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/AuxiliaryEntity.php rename to tests/Tests/Models/ValueConversionType/AuxiliaryEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/InversedManyToManyCompositeIdEntity.php b/tests/Tests/Models/ValueConversionType/InversedManyToManyCompositeIdEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/InversedManyToManyCompositeIdEntity.php rename to tests/Tests/Models/ValueConversionType/InversedManyToManyCompositeIdEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/InversedManyToManyCompositeIdForeignKeyEntity.php b/tests/Tests/Models/ValueConversionType/InversedManyToManyCompositeIdForeignKeyEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/InversedManyToManyCompositeIdForeignKeyEntity.php rename to tests/Tests/Models/ValueConversionType/InversedManyToManyCompositeIdForeignKeyEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/InversedManyToManyEntity.php b/tests/Tests/Models/ValueConversionType/InversedManyToManyEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/InversedManyToManyEntity.php rename to tests/Tests/Models/ValueConversionType/InversedManyToManyEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/InversedManyToManyExtraLazyEntity.php b/tests/Tests/Models/ValueConversionType/InversedManyToManyExtraLazyEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/InversedManyToManyExtraLazyEntity.php rename to tests/Tests/Models/ValueConversionType/InversedManyToManyExtraLazyEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/InversedOneToManyCompositeIdEntity.php b/tests/Tests/Models/ValueConversionType/InversedOneToManyCompositeIdEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/InversedOneToManyCompositeIdEntity.php rename to tests/Tests/Models/ValueConversionType/InversedOneToManyCompositeIdEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/InversedOneToManyCompositeIdForeignKeyEntity.php b/tests/Tests/Models/ValueConversionType/InversedOneToManyCompositeIdForeignKeyEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/InversedOneToManyCompositeIdForeignKeyEntity.php rename to tests/Tests/Models/ValueConversionType/InversedOneToManyCompositeIdForeignKeyEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/InversedOneToManyEntity.php b/tests/Tests/Models/ValueConversionType/InversedOneToManyEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/InversedOneToManyEntity.php rename to tests/Tests/Models/ValueConversionType/InversedOneToManyEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/InversedOneToManyExtraLazyEntity.php b/tests/Tests/Models/ValueConversionType/InversedOneToManyExtraLazyEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/InversedOneToManyExtraLazyEntity.php rename to tests/Tests/Models/ValueConversionType/InversedOneToManyExtraLazyEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/InversedOneToOneCompositeIdEntity.php b/tests/Tests/Models/ValueConversionType/InversedOneToOneCompositeIdEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/InversedOneToOneCompositeIdEntity.php rename to tests/Tests/Models/ValueConversionType/InversedOneToOneCompositeIdEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/InversedOneToOneCompositeIdForeignKeyEntity.php b/tests/Tests/Models/ValueConversionType/InversedOneToOneCompositeIdForeignKeyEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/InversedOneToOneCompositeIdForeignKeyEntity.php rename to tests/Tests/Models/ValueConversionType/InversedOneToOneCompositeIdForeignKeyEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/InversedOneToOneEntity.php b/tests/Tests/Models/ValueConversionType/InversedOneToOneEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/InversedOneToOneEntity.php rename to tests/Tests/Models/ValueConversionType/InversedOneToOneEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToManyCompositeIdEntity.php b/tests/Tests/Models/ValueConversionType/OwningManyToManyCompositeIdEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToManyCompositeIdEntity.php rename to tests/Tests/Models/ValueConversionType/OwningManyToManyCompositeIdEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToManyCompositeIdForeignKeyEntity.php b/tests/Tests/Models/ValueConversionType/OwningManyToManyCompositeIdForeignKeyEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToManyCompositeIdForeignKeyEntity.php rename to tests/Tests/Models/ValueConversionType/OwningManyToManyCompositeIdForeignKeyEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToManyEntity.php b/tests/Tests/Models/ValueConversionType/OwningManyToManyEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToManyEntity.php rename to tests/Tests/Models/ValueConversionType/OwningManyToManyEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToManyExtraLazyEntity.php b/tests/Tests/Models/ValueConversionType/OwningManyToManyExtraLazyEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToManyExtraLazyEntity.php rename to tests/Tests/Models/ValueConversionType/OwningManyToManyExtraLazyEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToOneCompositeIdEntity.php b/tests/Tests/Models/ValueConversionType/OwningManyToOneCompositeIdEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToOneCompositeIdEntity.php rename to tests/Tests/Models/ValueConversionType/OwningManyToOneCompositeIdEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToOneCompositeIdForeignKeyEntity.php b/tests/Tests/Models/ValueConversionType/OwningManyToOneCompositeIdForeignKeyEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToOneCompositeIdForeignKeyEntity.php rename to tests/Tests/Models/ValueConversionType/OwningManyToOneCompositeIdForeignKeyEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToOneEntity.php b/tests/Tests/Models/ValueConversionType/OwningManyToOneEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToOneEntity.php rename to tests/Tests/Models/ValueConversionType/OwningManyToOneEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToOneExtraLazyEntity.php b/tests/Tests/Models/ValueConversionType/OwningManyToOneExtraLazyEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToOneExtraLazyEntity.php rename to tests/Tests/Models/ValueConversionType/OwningManyToOneExtraLazyEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToOneIdForeignKeyEntity.php b/tests/Tests/Models/ValueConversionType/OwningManyToOneIdForeignKeyEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/OwningManyToOneIdForeignKeyEntity.php rename to tests/Tests/Models/ValueConversionType/OwningManyToOneIdForeignKeyEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/OwningOneToOneCompositeIdEntity.php b/tests/Tests/Models/ValueConversionType/OwningOneToOneCompositeIdEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/OwningOneToOneCompositeIdEntity.php rename to tests/Tests/Models/ValueConversionType/OwningOneToOneCompositeIdEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/OwningOneToOneCompositeIdForeignKeyEntity.php b/tests/Tests/Models/ValueConversionType/OwningOneToOneCompositeIdForeignKeyEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/OwningOneToOneCompositeIdForeignKeyEntity.php rename to tests/Tests/Models/ValueConversionType/OwningOneToOneCompositeIdForeignKeyEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueConversionType/OwningOneToOneEntity.php b/tests/Tests/Models/ValueConversionType/OwningOneToOneEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueConversionType/OwningOneToOneEntity.php rename to tests/Tests/Models/ValueConversionType/OwningOneToOneEntity.php diff --git a/tests/Doctrine/Tests/Models/ValueObjects/Name.php b/tests/Tests/Models/ValueObjects/Name.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueObjects/Name.php rename to tests/Tests/Models/ValueObjects/Name.php diff --git a/tests/Doctrine/Tests/Models/ValueObjects/Person.php b/tests/Tests/Models/ValueObjects/Person.php similarity index 100% rename from tests/Doctrine/Tests/Models/ValueObjects/Person.php rename to tests/Tests/Models/ValueObjects/Person.php diff --git a/tests/Doctrine/Tests/Models/VersionedManyToOne/Article.php b/tests/Tests/Models/VersionedManyToOne/Article.php similarity index 100% rename from tests/Doctrine/Tests/Models/VersionedManyToOne/Article.php rename to tests/Tests/Models/VersionedManyToOne/Article.php diff --git a/tests/Doctrine/Tests/Models/VersionedManyToOne/Category.php b/tests/Tests/Models/VersionedManyToOne/Category.php similarity index 100% rename from tests/Doctrine/Tests/Models/VersionedManyToOne/Category.php rename to tests/Tests/Models/VersionedManyToOne/Category.php diff --git a/tests/Doctrine/Tests/Models/VersionedOneToOne/FirstRelatedEntity.php b/tests/Tests/Models/VersionedOneToOne/FirstRelatedEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/VersionedOneToOne/FirstRelatedEntity.php rename to tests/Tests/Models/VersionedOneToOne/FirstRelatedEntity.php diff --git a/tests/Doctrine/Tests/Models/VersionedOneToOne/SecondRelatedEntity.php b/tests/Tests/Models/VersionedOneToOne/SecondRelatedEntity.php similarity index 100% rename from tests/Doctrine/Tests/Models/VersionedOneToOne/SecondRelatedEntity.php rename to tests/Tests/Models/VersionedOneToOne/SecondRelatedEntity.php diff --git a/tests/Doctrine/Tests/ORM/AbstractQueryTest.php b/tests/Tests/ORM/AbstractQueryTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/AbstractQueryTest.php rename to tests/Tests/ORM/AbstractQueryTest.php diff --git a/tests/Doctrine/Tests/ORM/Cache/CacheConfigTest.php b/tests/Tests/ORM/Cache/CacheConfigTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/CacheConfigTest.php rename to tests/Tests/ORM/Cache/CacheConfigTest.php diff --git a/tests/Doctrine/Tests/ORM/Cache/CacheKeyTest.php b/tests/Tests/ORM/Cache/CacheKeyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/CacheKeyTest.php rename to tests/Tests/ORM/Cache/CacheKeyTest.php diff --git a/tests/Doctrine/Tests/ORM/Cache/CacheLoggerChainTest.php b/tests/Tests/ORM/Cache/CacheLoggerChainTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/CacheLoggerChainTest.php rename to tests/Tests/ORM/Cache/CacheLoggerChainTest.php diff --git a/tests/Doctrine/Tests/ORM/Cache/DefaultCacheFactoryTest.php b/tests/Tests/ORM/Cache/DefaultCacheFactoryTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/DefaultCacheFactoryTest.php rename to tests/Tests/ORM/Cache/DefaultCacheFactoryTest.php diff --git a/tests/Doctrine/Tests/ORM/Cache/DefaultCacheTest.php b/tests/Tests/ORM/Cache/DefaultCacheTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/DefaultCacheTest.php rename to tests/Tests/ORM/Cache/DefaultCacheTest.php diff --git a/tests/Doctrine/Tests/ORM/Cache/DefaultCollectionHydratorTest.php b/tests/Tests/ORM/Cache/DefaultCollectionHydratorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/DefaultCollectionHydratorTest.php rename to tests/Tests/ORM/Cache/DefaultCollectionHydratorTest.php diff --git a/tests/Doctrine/Tests/ORM/Cache/DefaultEntityHydratorTest.php b/tests/Tests/ORM/Cache/DefaultEntityHydratorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/DefaultEntityHydratorTest.php rename to tests/Tests/ORM/Cache/DefaultEntityHydratorTest.php diff --git a/tests/Doctrine/Tests/ORM/Cache/DefaultQueryCacheTest.php b/tests/Tests/ORM/Cache/DefaultQueryCacheTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/DefaultQueryCacheTest.php rename to tests/Tests/ORM/Cache/DefaultQueryCacheTest.php diff --git a/tests/Doctrine/Tests/ORM/Cache/DefaultRegionTest.php b/tests/Tests/ORM/Cache/DefaultRegionTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/DefaultRegionTest.php rename to tests/Tests/ORM/Cache/DefaultRegionTest.php diff --git a/tests/Doctrine/Tests/ORM/Cache/FileLockRegionTest.php b/tests/Tests/ORM/Cache/FileLockRegionTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/FileLockRegionTest.php rename to tests/Tests/ORM/Cache/FileLockRegionTest.php diff --git a/tests/Doctrine/Tests/ORM/Cache/Persister/Collection/CollectionPersisterTestCase.php b/tests/Tests/ORM/Cache/Persister/Collection/CollectionPersisterTestCase.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/Persister/Collection/CollectionPersisterTestCase.php rename to tests/Tests/ORM/Cache/Persister/Collection/CollectionPersisterTestCase.php diff --git a/tests/Doctrine/Tests/ORM/Cache/Persister/Collection/NonStrictReadWriteCachedCollectionPersisterTest.php b/tests/Tests/ORM/Cache/Persister/Collection/NonStrictReadWriteCachedCollectionPersisterTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/Persister/Collection/NonStrictReadWriteCachedCollectionPersisterTest.php rename to tests/Tests/ORM/Cache/Persister/Collection/NonStrictReadWriteCachedCollectionPersisterTest.php diff --git a/tests/Doctrine/Tests/ORM/Cache/Persister/Collection/ReadOnlyCachedCollectionPersisterTest.php b/tests/Tests/ORM/Cache/Persister/Collection/ReadOnlyCachedCollectionPersisterTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/Persister/Collection/ReadOnlyCachedCollectionPersisterTest.php rename to tests/Tests/ORM/Cache/Persister/Collection/ReadOnlyCachedCollectionPersisterTest.php diff --git a/tests/Doctrine/Tests/ORM/Cache/Persister/Collection/ReadWriteCachedCollectionPersisterTest.php b/tests/Tests/ORM/Cache/Persister/Collection/ReadWriteCachedCollectionPersisterTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/Persister/Collection/ReadWriteCachedCollectionPersisterTest.php rename to tests/Tests/ORM/Cache/Persister/Collection/ReadWriteCachedCollectionPersisterTest.php diff --git a/tests/Doctrine/Tests/ORM/Cache/Persister/Entity/EntityPersisterTestCase.php b/tests/Tests/ORM/Cache/Persister/Entity/EntityPersisterTestCase.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/Persister/Entity/EntityPersisterTestCase.php rename to tests/Tests/ORM/Cache/Persister/Entity/EntityPersisterTestCase.php diff --git a/tests/Doctrine/Tests/ORM/Cache/Persister/Entity/NonStrictReadWriteCachedEntityPersisterTest.php b/tests/Tests/ORM/Cache/Persister/Entity/NonStrictReadWriteCachedEntityPersisterTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/Persister/Entity/NonStrictReadWriteCachedEntityPersisterTest.php rename to tests/Tests/ORM/Cache/Persister/Entity/NonStrictReadWriteCachedEntityPersisterTest.php diff --git a/tests/Doctrine/Tests/ORM/Cache/Persister/Entity/ReadOnlyCachedEntityPersisterTest.php b/tests/Tests/ORM/Cache/Persister/Entity/ReadOnlyCachedEntityPersisterTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/Persister/Entity/ReadOnlyCachedEntityPersisterTest.php rename to tests/Tests/ORM/Cache/Persister/Entity/ReadOnlyCachedEntityPersisterTest.php diff --git a/tests/Doctrine/Tests/ORM/Cache/Persister/Entity/ReadWriteCachedEntityPersisterTest.php b/tests/Tests/ORM/Cache/Persister/Entity/ReadWriteCachedEntityPersisterTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/Persister/Entity/ReadWriteCachedEntityPersisterTest.php rename to tests/Tests/ORM/Cache/Persister/Entity/ReadWriteCachedEntityPersisterTest.php diff --git a/tests/Doctrine/Tests/ORM/Cache/RegionTestCase.php b/tests/Tests/ORM/Cache/RegionTestCase.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/RegionTestCase.php rename to tests/Tests/ORM/Cache/RegionTestCase.php diff --git a/tests/Doctrine/Tests/ORM/Cache/StatisticsCacheLoggerTest.php b/tests/Tests/ORM/Cache/StatisticsCacheLoggerTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Cache/StatisticsCacheLoggerTest.php rename to tests/Tests/ORM/Cache/StatisticsCacheLoggerTest.php diff --git a/tests/Doctrine/Tests/ORM/ConfigurationTest.php b/tests/Tests/ORM/ConfigurationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/ConfigurationTest.php rename to tests/Tests/ORM/ConfigurationTest.php diff --git a/tests/Doctrine/Tests/ORM/Entity/ConstructorTest.php b/tests/Tests/ORM/Entity/ConstructorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Entity/ConstructorTest.php rename to tests/Tests/ORM/Entity/ConstructorTest.php diff --git a/tests/Doctrine/Tests/ORM/EntityManagerTest.php b/tests/Tests/ORM/EntityManagerTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/EntityManagerTest.php rename to tests/Tests/ORM/EntityManagerTest.php diff --git a/tests/Doctrine/Tests/ORM/EntityNotFoundExceptionTest.php b/tests/Tests/ORM/EntityNotFoundExceptionTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/EntityNotFoundExceptionTest.php rename to tests/Tests/ORM/EntityNotFoundExceptionTest.php diff --git a/tests/Doctrine/Tests/ORM/Event/OnClassMetadataNotFoundEventArgsTest.php b/tests/Tests/ORM/Event/OnClassMetadataNotFoundEventArgsTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Event/OnClassMetadataNotFoundEventArgsTest.php rename to tests/Tests/ORM/Event/OnClassMetadataNotFoundEventArgsTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/AbstractManyToManyAssociationTestCase.php b/tests/Tests/ORM/Functional/AbstractManyToManyAssociationTestCase.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/AbstractManyToManyAssociationTestCase.php rename to tests/Tests/ORM/Functional/AbstractManyToManyAssociationTestCase.php diff --git a/tests/Doctrine/Tests/ORM/Functional/AdvancedAssociationTest.php b/tests/Tests/ORM/Functional/AdvancedAssociationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/AdvancedAssociationTest.php rename to tests/Tests/ORM/Functional/AdvancedAssociationTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/AdvancedDqlQueryTest.php b/tests/Tests/ORM/Functional/AdvancedDqlQueryTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/AdvancedDqlQueryTest.php rename to tests/Tests/ORM/Functional/AdvancedDqlQueryTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/BasicFunctionalTest.php b/tests/Tests/ORM/Functional/BasicFunctionalTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/BasicFunctionalTest.php rename to tests/Tests/ORM/Functional/BasicFunctionalTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/CascadeRemoveOrderTest.php b/tests/Tests/ORM/Functional/CascadeRemoveOrderTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/CascadeRemoveOrderTest.php rename to tests/Tests/ORM/Functional/CascadeRemoveOrderTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ClassTableInheritanceSecondTest.php b/tests/Tests/ORM/Functional/ClassTableInheritanceSecondTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ClassTableInheritanceSecondTest.php rename to tests/Tests/ORM/Functional/ClassTableInheritanceSecondTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ClassTableInheritanceTest.php b/tests/Tests/ORM/Functional/ClassTableInheritanceTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ClassTableInheritanceTest.php rename to tests/Tests/ORM/Functional/ClassTableInheritanceTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ClearEventTest.php b/tests/Tests/ORM/Functional/ClearEventTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ClearEventTest.php rename to tests/Tests/ORM/Functional/ClearEventTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/CompositePrimaryKeyTest.php b/tests/Tests/ORM/Functional/CompositePrimaryKeyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/CompositePrimaryKeyTest.php rename to tests/Tests/ORM/Functional/CompositePrimaryKeyTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/CompositePrimaryKeyWithAssociationsTest.php b/tests/Tests/ORM/Functional/CompositePrimaryKeyWithAssociationsTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/CompositePrimaryKeyWithAssociationsTest.php rename to tests/Tests/ORM/Functional/CompositePrimaryKeyWithAssociationsTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/CustomFunctionsTest.php b/tests/Tests/ORM/Functional/CustomFunctionsTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/CustomFunctionsTest.php rename to tests/Tests/ORM/Functional/CustomFunctionsTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/CustomIdObjectTypeTest.php b/tests/Tests/ORM/Functional/CustomIdObjectTypeTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/CustomIdObjectTypeTest.php rename to tests/Tests/ORM/Functional/CustomIdObjectTypeTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/DatabaseDriverTest.php b/tests/Tests/ORM/Functional/DatabaseDriverTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/DatabaseDriverTest.php rename to tests/Tests/ORM/Functional/DatabaseDriverTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/DatabaseDriverTestCase.php b/tests/Tests/ORM/Functional/DatabaseDriverTestCase.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/DatabaseDriverTestCase.php rename to tests/Tests/ORM/Functional/DatabaseDriverTestCase.php diff --git a/tests/Doctrine/Tests/ORM/Functional/DefaultValuesTest.php b/tests/Tests/ORM/Functional/DefaultValuesTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/DefaultValuesTest.php rename to tests/Tests/ORM/Functional/DefaultValuesTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/DetachedEntityTest.php b/tests/Tests/ORM/Functional/DetachedEntityTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/DetachedEntityTest.php rename to tests/Tests/ORM/Functional/DetachedEntityTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/EagerFetchCollectionTest.php b/tests/Tests/ORM/Functional/EagerFetchCollectionTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/EagerFetchCollectionTest.php rename to tests/Tests/ORM/Functional/EagerFetchCollectionTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/EntityListenersTest.php b/tests/Tests/ORM/Functional/EntityListenersTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/EntityListenersTest.php rename to tests/Tests/ORM/Functional/EntityListenersTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/EntityRepositoryCriteriaTest.php b/tests/Tests/ORM/Functional/EntityRepositoryCriteriaTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/EntityRepositoryCriteriaTest.php rename to tests/Tests/ORM/Functional/EntityRepositoryCriteriaTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/EntityRepositoryTest.php b/tests/Tests/ORM/Functional/EntityRepositoryTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/EntityRepositoryTest.php rename to tests/Tests/ORM/Functional/EntityRepositoryTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/EnumTest.php b/tests/Tests/ORM/Functional/EnumTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/EnumTest.php rename to tests/Tests/ORM/Functional/EnumTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ExtraLazyCollectionTest.php b/tests/Tests/ORM/Functional/ExtraLazyCollectionTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ExtraLazyCollectionTest.php rename to tests/Tests/ORM/Functional/ExtraLazyCollectionTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/FlushEventTest.php b/tests/Tests/ORM/Functional/FlushEventTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/FlushEventTest.php rename to tests/Tests/ORM/Functional/FlushEventTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/GH7877Test.php b/tests/Tests/ORM/Functional/GH7877Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/GH7877Test.php rename to tests/Tests/ORM/Functional/GH7877Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/HydrationCacheTest.php b/tests/Tests/ORM/Functional/HydrationCacheTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/HydrationCacheTest.php rename to tests/Tests/ORM/Functional/HydrationCacheTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/IdentityMapTest.php b/tests/Tests/ORM/Functional/IdentityMapTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/IdentityMapTest.php rename to tests/Tests/ORM/Functional/IdentityMapTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/IndexByAssociationTest.php b/tests/Tests/ORM/Functional/IndexByAssociationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/IndexByAssociationTest.php rename to tests/Tests/ORM/Functional/IndexByAssociationTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/InsertableUpdatableTest.php b/tests/Tests/ORM/Functional/InsertableUpdatableTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/InsertableUpdatableTest.php rename to tests/Tests/ORM/Functional/InsertableUpdatableTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/JoinedTableCompositeKeyTest.php b/tests/Tests/ORM/Functional/JoinedTableCompositeKeyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/JoinedTableCompositeKeyTest.php rename to tests/Tests/ORM/Functional/JoinedTableCompositeKeyTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/LifecycleCallbackTest.php b/tests/Tests/ORM/Functional/LifecycleCallbackTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/LifecycleCallbackTest.php rename to tests/Tests/ORM/Functional/LifecycleCallbackTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Locking/GearmanLockTest.php b/tests/Tests/ORM/Functional/Locking/GearmanLockTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Locking/GearmanLockTest.php rename to tests/Tests/ORM/Functional/Locking/GearmanLockTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Locking/LockAgentWorker.php b/tests/Tests/ORM/Functional/Locking/LockAgentWorker.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Locking/LockAgentWorker.php rename to tests/Tests/ORM/Functional/Locking/LockAgentWorker.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Locking/LockTest.php b/tests/Tests/ORM/Functional/Locking/LockTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Locking/LockTest.php rename to tests/Tests/ORM/Functional/Locking/LockTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Locking/OptimisticTest.php b/tests/Tests/ORM/Functional/Locking/OptimisticTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Locking/OptimisticTest.php rename to tests/Tests/ORM/Functional/Locking/OptimisticTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ManyToManyBasicAssociationTest.php b/tests/Tests/ORM/Functional/ManyToManyBasicAssociationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ManyToManyBasicAssociationTest.php rename to tests/Tests/ORM/Functional/ManyToManyBasicAssociationTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ManyToManyBidirectionalAssociationTest.php b/tests/Tests/ORM/Functional/ManyToManyBidirectionalAssociationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ManyToManyBidirectionalAssociationTest.php rename to tests/Tests/ORM/Functional/ManyToManyBidirectionalAssociationTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ManyToManyEventTest.php b/tests/Tests/ORM/Functional/ManyToManyEventTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ManyToManyEventTest.php rename to tests/Tests/ORM/Functional/ManyToManyEventTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ManyToManySelfReferentialAssociationTest.php b/tests/Tests/ORM/Functional/ManyToManySelfReferentialAssociationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ManyToManySelfReferentialAssociationTest.php rename to tests/Tests/ORM/Functional/ManyToManySelfReferentialAssociationTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ManyToManyUnidirectionalAssociationTest.php b/tests/Tests/ORM/Functional/ManyToManyUnidirectionalAssociationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ManyToManyUnidirectionalAssociationTest.php rename to tests/Tests/ORM/Functional/ManyToManyUnidirectionalAssociationTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/MappedSuperclassTest.php b/tests/Tests/ORM/Functional/MappedSuperclassTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/MappedSuperclassTest.php rename to tests/Tests/ORM/Functional/MappedSuperclassTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/NativeQueryTest.php b/tests/Tests/ORM/Functional/NativeQueryTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/NativeQueryTest.php rename to tests/Tests/ORM/Functional/NativeQueryTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/NewOperatorTest.php b/tests/Tests/ORM/Functional/NewOperatorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/NewOperatorTest.php rename to tests/Tests/ORM/Functional/NewOperatorTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/OneToManyBidirectionalAssociationTest.php b/tests/Tests/ORM/Functional/OneToManyBidirectionalAssociationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/OneToManyBidirectionalAssociationTest.php rename to tests/Tests/ORM/Functional/OneToManyBidirectionalAssociationTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/OneToManyOrphanRemovalTest.php b/tests/Tests/ORM/Functional/OneToManyOrphanRemovalTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/OneToManyOrphanRemovalTest.php rename to tests/Tests/ORM/Functional/OneToManyOrphanRemovalTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/OneToManySelfReferentialAssociationTest.php b/tests/Tests/ORM/Functional/OneToManySelfReferentialAssociationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/OneToManySelfReferentialAssociationTest.php rename to tests/Tests/ORM/Functional/OneToManySelfReferentialAssociationTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/OneToManyUnidirectionalAssociationTest.php b/tests/Tests/ORM/Functional/OneToManyUnidirectionalAssociationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/OneToManyUnidirectionalAssociationTest.php rename to tests/Tests/ORM/Functional/OneToManyUnidirectionalAssociationTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/OneToOneBidirectionalAssociationTest.php b/tests/Tests/ORM/Functional/OneToOneBidirectionalAssociationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/OneToOneBidirectionalAssociationTest.php rename to tests/Tests/ORM/Functional/OneToOneBidirectionalAssociationTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/OneToOneEagerLoadingTest.php b/tests/Tests/ORM/Functional/OneToOneEagerLoadingTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/OneToOneEagerLoadingTest.php rename to tests/Tests/ORM/Functional/OneToOneEagerLoadingTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/OneToOneInverseSideLoadAfterDqlQueryTest.php b/tests/Tests/ORM/Functional/OneToOneInverseSideLoadAfterDqlQueryTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/OneToOneInverseSideLoadAfterDqlQueryTest.php rename to tests/Tests/ORM/Functional/OneToOneInverseSideLoadAfterDqlQueryTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/OneToOneOrphanRemovalTest.php b/tests/Tests/ORM/Functional/OneToOneOrphanRemovalTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/OneToOneOrphanRemovalTest.php rename to tests/Tests/ORM/Functional/OneToOneOrphanRemovalTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/OneToOneSelfReferentialAssociationTest.php b/tests/Tests/ORM/Functional/OneToOneSelfReferentialAssociationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/OneToOneSelfReferentialAssociationTest.php rename to tests/Tests/ORM/Functional/OneToOneSelfReferentialAssociationTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/OneToOneSingleTableInheritanceTest.php b/tests/Tests/ORM/Functional/OneToOneSingleTableInheritanceTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/OneToOneSingleTableInheritanceTest.php rename to tests/Tests/ORM/Functional/OneToOneSingleTableInheritanceTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/OneToOneUnidirectionalAssociationTest.php b/tests/Tests/ORM/Functional/OneToOneUnidirectionalAssociationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/OneToOneUnidirectionalAssociationTest.php rename to tests/Tests/ORM/Functional/OneToOneUnidirectionalAssociationTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/OrderedCollectionTest.php b/tests/Tests/ORM/Functional/OrderedCollectionTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/OrderedCollectionTest.php rename to tests/Tests/ORM/Functional/OrderedCollectionTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/OrderedJoinedTableInheritanceCollectionTest.php b/tests/Tests/ORM/Functional/OrderedJoinedTableInheritanceCollectionTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/OrderedJoinedTableInheritanceCollectionTest.php rename to tests/Tests/ORM/Functional/OrderedJoinedTableInheritanceCollectionTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/PaginationTest.php b/tests/Tests/ORM/Functional/PaginationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/PaginationTest.php rename to tests/Tests/ORM/Functional/PaginationTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ParserResultSerializationTest.php b/tests/Tests/ORM/Functional/ParserResultSerializationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ParserResultSerializationTest.php rename to tests/Tests/ORM/Functional/ParserResultSerializationTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ParserResults/single_select_2_17_0.txt b/tests/Tests/ORM/Functional/ParserResults/single_select_2_17_0.txt similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ParserResults/single_select_2_17_0.txt rename to tests/Tests/ORM/Functional/ParserResults/single_select_2_17_0.txt diff --git a/tests/Doctrine/Tests/ORM/Functional/PersistentCollectionCriteriaTest.php b/tests/Tests/ORM/Functional/PersistentCollectionCriteriaTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/PersistentCollectionCriteriaTest.php rename to tests/Tests/ORM/Functional/PersistentCollectionCriteriaTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/PersistentCollectionTest.php b/tests/Tests/ORM/Functional/PersistentCollectionTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/PersistentCollectionTest.php rename to tests/Tests/ORM/Functional/PersistentCollectionTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/PostFlushEventTest.php b/tests/Tests/ORM/Functional/PostFlushEventTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/PostFlushEventTest.php rename to tests/Tests/ORM/Functional/PostFlushEventTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/PostLoadEventTest.php b/tests/Tests/ORM/Functional/PostLoadEventTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/PostLoadEventTest.php rename to tests/Tests/ORM/Functional/PostLoadEventTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ProxiesLikeEntitiesTest.php b/tests/Tests/ORM/Functional/ProxiesLikeEntitiesTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ProxiesLikeEntitiesTest.php rename to tests/Tests/ORM/Functional/ProxiesLikeEntitiesTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/QueryBuilderParenthesisTest.php b/tests/Tests/ORM/Functional/QueryBuilderParenthesisTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/QueryBuilderParenthesisTest.php rename to tests/Tests/ORM/Functional/QueryBuilderParenthesisTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/QueryCacheTest.php b/tests/Tests/ORM/Functional/QueryCacheTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/QueryCacheTest.php rename to tests/Tests/ORM/Functional/QueryCacheTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/QueryDqlFunctionTest.php b/tests/Tests/ORM/Functional/QueryDqlFunctionTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/QueryDqlFunctionTest.php rename to tests/Tests/ORM/Functional/QueryDqlFunctionTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/QueryIterableTest.php b/tests/Tests/ORM/Functional/QueryIterableTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/QueryIterableTest.php rename to tests/Tests/ORM/Functional/QueryIterableTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/QueryTest.php b/tests/Tests/ORM/Functional/QueryTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/QueryTest.php rename to tests/Tests/ORM/Functional/QueryTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ReadOnlyTest.php b/tests/Tests/ORM/Functional/ReadOnlyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ReadOnlyTest.php rename to tests/Tests/ORM/Functional/ReadOnlyTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ReadonlyPropertiesTest.php b/tests/Tests/ORM/Functional/ReadonlyPropertiesTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ReadonlyPropertiesTest.php rename to tests/Tests/ORM/Functional/ReadonlyPropertiesTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ReferenceProxyTest.php b/tests/Tests/ORM/Functional/ReferenceProxyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ReferenceProxyTest.php rename to tests/Tests/ORM/Functional/ReferenceProxyTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ResultCacheTest.php b/tests/Tests/ORM/Functional/ResultCacheTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ResultCacheTest.php rename to tests/Tests/ORM/Functional/ResultCacheTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SQLFilterTest.php b/tests/Tests/ORM/Functional/SQLFilterTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SQLFilterTest.php rename to tests/Tests/ORM/Functional/SQLFilterTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SchemaTool/CompanySchemaTest.php b/tests/Tests/ORM/Functional/SchemaTool/CompanySchemaTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SchemaTool/CompanySchemaTest.php rename to tests/Tests/ORM/Functional/SchemaTool/CompanySchemaTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SchemaTool/DBAL483Test.php b/tests/Tests/ORM/Functional/SchemaTool/DBAL483Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SchemaTool/DBAL483Test.php rename to tests/Tests/ORM/Functional/SchemaTool/DBAL483Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SchemaTool/DDC214Test.php b/tests/Tests/ORM/Functional/SchemaTool/DDC214Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SchemaTool/DDC214Test.php rename to tests/Tests/ORM/Functional/SchemaTool/DDC214Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SchemaTool/MySqlSchemaToolTest.php b/tests/Tests/ORM/Functional/SchemaTool/MySqlSchemaToolTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SchemaTool/MySqlSchemaToolTest.php rename to tests/Tests/ORM/Functional/SchemaTool/MySqlSchemaToolTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SchemaTool/PostgreSqlSchemaToolTest.php b/tests/Tests/ORM/Functional/SchemaTool/PostgreSqlSchemaToolTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SchemaTool/PostgreSqlSchemaToolTest.php rename to tests/Tests/ORM/Functional/SchemaTool/PostgreSqlSchemaToolTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SchemaValidatorTest.php b/tests/Tests/ORM/Functional/SchemaValidatorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SchemaValidatorTest.php rename to tests/Tests/ORM/Functional/SchemaValidatorTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheCompositePrimaryKeyTest.php b/tests/Tests/ORM/Functional/SecondLevelCacheCompositePrimaryKeyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheCompositePrimaryKeyTest.php rename to tests/Tests/ORM/Functional/SecondLevelCacheCompositePrimaryKeyTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheCompositePrimaryKeyWithAssociationsTest.php b/tests/Tests/ORM/Functional/SecondLevelCacheCompositePrimaryKeyWithAssociationsTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheCompositePrimaryKeyWithAssociationsTest.php rename to tests/Tests/ORM/Functional/SecondLevelCacheCompositePrimaryKeyWithAssociationsTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheConcurrentTest.php b/tests/Tests/ORM/Functional/SecondLevelCacheConcurrentTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheConcurrentTest.php rename to tests/Tests/ORM/Functional/SecondLevelCacheConcurrentTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheCriteriaTest.php b/tests/Tests/ORM/Functional/SecondLevelCacheCriteriaTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheCriteriaTest.php rename to tests/Tests/ORM/Functional/SecondLevelCacheCriteriaTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheExtraLazyCollectionTest.php b/tests/Tests/ORM/Functional/SecondLevelCacheExtraLazyCollectionTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheExtraLazyCollectionTest.php rename to tests/Tests/ORM/Functional/SecondLevelCacheExtraLazyCollectionTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheFunctionalTestCase.php b/tests/Tests/ORM/Functional/SecondLevelCacheFunctionalTestCase.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheFunctionalTestCase.php rename to tests/Tests/ORM/Functional/SecondLevelCacheFunctionalTestCase.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheJoinTableInheritanceTest.php b/tests/Tests/ORM/Functional/SecondLevelCacheJoinTableInheritanceTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheJoinTableInheritanceTest.php rename to tests/Tests/ORM/Functional/SecondLevelCacheJoinTableInheritanceTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheManyToManyTest.php b/tests/Tests/ORM/Functional/SecondLevelCacheManyToManyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheManyToManyTest.php rename to tests/Tests/ORM/Functional/SecondLevelCacheManyToManyTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheManyToOneTest.php b/tests/Tests/ORM/Functional/SecondLevelCacheManyToOneTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheManyToOneTest.php rename to tests/Tests/ORM/Functional/SecondLevelCacheManyToOneTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheOneToManyTest.php b/tests/Tests/ORM/Functional/SecondLevelCacheOneToManyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheOneToManyTest.php rename to tests/Tests/ORM/Functional/SecondLevelCacheOneToManyTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheOneToOneTest.php b/tests/Tests/ORM/Functional/SecondLevelCacheOneToOneTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheOneToOneTest.php rename to tests/Tests/ORM/Functional/SecondLevelCacheOneToOneTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheQueryCacheTest.php b/tests/Tests/ORM/Functional/SecondLevelCacheQueryCacheTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheQueryCacheTest.php rename to tests/Tests/ORM/Functional/SecondLevelCacheQueryCacheTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheRepositoryTest.php b/tests/Tests/ORM/Functional/SecondLevelCacheRepositoryTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheRepositoryTest.php rename to tests/Tests/ORM/Functional/SecondLevelCacheRepositoryTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheSingleTableInheritanceTest.php b/tests/Tests/ORM/Functional/SecondLevelCacheSingleTableInheritanceTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheSingleTableInheritanceTest.php rename to tests/Tests/ORM/Functional/SecondLevelCacheSingleTableInheritanceTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheTest.php b/tests/Tests/ORM/Functional/SecondLevelCacheTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SecondLevelCacheTest.php rename to tests/Tests/ORM/Functional/SecondLevelCacheTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SequenceGeneratorTest.php b/tests/Tests/ORM/Functional/SequenceGeneratorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SequenceGeneratorTest.php rename to tests/Tests/ORM/Functional/SequenceGeneratorTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SingleTableCompositeKeyTest.php b/tests/Tests/ORM/Functional/SingleTableCompositeKeyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SingleTableCompositeKeyTest.php rename to tests/Tests/ORM/Functional/SingleTableCompositeKeyTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/SingleTableInheritanceTest.php b/tests/Tests/ORM/Functional/SingleTableInheritanceTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/SingleTableInheritanceTest.php rename to tests/Tests/ORM/Functional/SingleTableInheritanceTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/StandardEntityPersisterTest.php b/tests/Tests/ORM/Functional/StandardEntityPersisterTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/StandardEntityPersisterTest.php rename to tests/Tests/ORM/Functional/StandardEntityPersisterTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1040Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1040Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1040Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1040Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1041Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1041Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1041Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1041Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1043Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1043Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1043Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1043Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1080Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1080Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1080Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1080Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1113Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1113Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1113Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1113Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1129Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1129Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1129Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1129Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1163Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1163Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1163Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1163Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC117Test.php b/tests/Tests/ORM/Functional/Ticket/DDC117Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC117Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC117Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1181Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1181Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1181Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1181Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1193Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1193Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1193Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1193Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1209Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1209Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1209Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1209Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1225Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1225Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1225Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1225Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1228Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1228Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1228Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1228Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1238Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1238Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1238Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1238Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1250Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1250Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1250Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1250Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1300Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1300Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1300Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1300Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1301Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1301Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1301Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1301Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1306Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1306Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1306Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1306Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1335Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1335Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1335Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1335Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1400Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1400Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1400Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1400Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC142Test.php b/tests/Tests/ORM/Functional/Ticket/DDC142Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC142Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC142Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1430Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1430Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1430Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1430Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1436Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1436Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1436Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1436Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC144Test.php b/tests/Tests/ORM/Functional/Ticket/DDC144Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC144Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC144Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1452Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1452Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1452Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1452Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1454Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1454Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1454Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1454Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1458Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1458Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1458Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1458Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1461Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1461Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1461Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1461Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1514Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1514Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1514Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1514Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1515Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1515Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1515Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1515Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1526Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1526Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1526Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1526Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1545Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1545Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1545Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1545Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1548Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1548Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1548Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1548Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1595Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1595Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1595Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1595Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC163Test.php b/tests/Tests/ORM/Functional/Ticket/DDC163Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC163Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC163Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1643Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1643Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1643Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1643Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1654Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1654Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1654Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1654Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1655Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1655Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1655Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1655Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1666Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1666Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1666Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1666Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1685Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1685Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1685Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1685Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC168Test.php b/tests/Tests/ORM/Functional/Ticket/DDC168Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC168Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC168Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1695Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1695Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1695Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1695Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1707Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1707Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1707Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1707Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1719Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1719Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1719Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1719Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1757Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1757Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1757Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1757Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1778Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1778Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1778Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1778Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1787Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1787Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1787Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1787Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1843Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1843Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1843Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1843Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1884Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1884Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1884Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1884Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1885Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1885Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1885Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1885Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1918Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1918Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1918Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1918Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1925Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1925Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1925Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1925Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC192Test.php b/tests/Tests/ORM/Functional/Ticket/DDC192Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC192Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC192Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1995Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1995Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1995Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1995Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1998Test.php b/tests/Tests/ORM/Functional/Ticket/DDC1998Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1998Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC1998Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC199Test.php b/tests/Tests/ORM/Functional/Ticket/DDC199Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC199Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC199Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2012Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2012Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2012Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2012Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2074Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2074Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2074Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2074Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2084Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2084Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2084Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2084Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2090Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2090Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2090Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2090Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2106Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2106Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2106Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2106Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC211Test.php b/tests/Tests/ORM/Functional/Ticket/DDC211Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC211Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC211Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2138Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2138Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2138Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2138Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2175Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2175Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2175Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2175Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2182Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2182Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2182Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2182Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2214Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2214Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2214Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2214Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2224Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2224Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2224Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2224Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2252Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2252Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2252Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2252Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2306Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2306Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2306Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2306Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2346Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2346Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2346Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2346Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2350Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2350Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2350Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2350Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2359Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2359Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2359Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2359Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC237Test.php b/tests/Tests/ORM/Functional/Ticket/DDC237Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC237Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC237Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2387Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2387Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2387Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2387Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2415Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2415Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2415Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2415Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2494Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2494Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2494Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2494Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2575Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2575Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2575Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2575Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2579Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2579Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2579Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2579Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC258Test.php b/tests/Tests/ORM/Functional/Ticket/DDC258Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC258Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC258Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2602Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2602Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2602Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2602Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2655Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2655Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2655Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2655Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2660Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2660Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2660Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2660Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2692Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2692Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2692Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2692Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2759Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2759Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2759Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2759Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2775Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2775Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2775Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2775Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2780Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2780Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2780Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2780Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2790Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2790Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2790Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2790Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC279Test.php b/tests/Tests/ORM/Functional/Ticket/DDC279Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC279Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC279Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2825Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2825Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2825Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2825Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2862Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2862Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2862Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2862Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2895Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2895Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2895Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2895Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2931Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2931Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2931Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2931Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2943Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2943Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2943Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2943Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2984Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2984Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2984Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2984Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2996Test.php b/tests/Tests/ORM/Functional/Ticket/DDC2996Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2996Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC2996Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3033Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3033Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3033Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3033Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3042Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3042Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3042Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3042Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3068Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3068Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3068Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3068Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC309Test.php b/tests/Tests/ORM/Functional/Ticket/DDC309Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC309Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC309Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3103Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3103Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3103Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3103Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3123Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3123Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3123Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3123Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3160Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3160Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3160Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3160Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3170Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3170Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3170Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3170Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3192Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3192Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3192Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3192Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3223Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3223Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3223Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3223Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3300Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3300Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3300Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3300Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3303Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3303Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3303Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3303Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC331Test.php b/tests/Tests/ORM/Functional/Ticket/DDC331Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC331Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC331Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3330Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3330Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3330Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3330Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3346Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3346Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3346Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3346Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC345Test.php b/tests/Tests/ORM/Functional/Ticket/DDC345Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC345Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC345Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC353Test.php b/tests/Tests/ORM/Functional/Ticket/DDC353Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC353Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC353Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3582Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3582Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3582Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3582Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3597Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3597Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3597Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3597Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3634Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3634Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3634Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3634Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3644Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3644Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3644Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3644Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3719Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3719Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3719Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3719Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC371Test.php b/tests/Tests/ORM/Functional/Ticket/DDC371Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC371Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC371Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3785Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3785Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3785Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3785Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC381Test.php b/tests/Tests/ORM/Functional/Ticket/DDC381Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC381Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC381Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3967Test.php b/tests/Tests/ORM/Functional/Ticket/DDC3967Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC3967Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC3967Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC4003Test.php b/tests/Tests/ORM/Functional/Ticket/DDC4003Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC4003Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC4003Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC4024Test.php b/tests/Tests/ORM/Functional/Ticket/DDC4024Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC4024Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC4024Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC422Test.php b/tests/Tests/ORM/Functional/Ticket/DDC422Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC422Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC422Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC425Test.php b/tests/Tests/ORM/Functional/Ticket/DDC425Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC425Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC425Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC440Test.php b/tests/Tests/ORM/Functional/Ticket/DDC440Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC440Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC440Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC444Test.php b/tests/Tests/ORM/Functional/Ticket/DDC444Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC444Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC444Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC448Test.php b/tests/Tests/ORM/Functional/Ticket/DDC448Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC448Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC448Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC493Test.php b/tests/Tests/ORM/Functional/Ticket/DDC493Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC493Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC493Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC512Test.php b/tests/Tests/ORM/Functional/Ticket/DDC512Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC512Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC512Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC513Test.php b/tests/Tests/ORM/Functional/Ticket/DDC513Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC513Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC513Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC522Test.php b/tests/Tests/ORM/Functional/Ticket/DDC522Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC522Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC522Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC531Test.php b/tests/Tests/ORM/Functional/Ticket/DDC531Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC531Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC531Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC5684Test.php b/tests/Tests/ORM/Functional/Ticket/DDC5684Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC5684Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC5684Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC588Test.php b/tests/Tests/ORM/Functional/Ticket/DDC588Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC588Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC588Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC599Test.php b/tests/Tests/ORM/Functional/Ticket/DDC599Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC599Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC599Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC618Test.php b/tests/Tests/ORM/Functional/Ticket/DDC618Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC618Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC618Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC6303Test.php b/tests/Tests/ORM/Functional/Ticket/DDC6303Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC6303Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC6303Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC633Test.php b/tests/Tests/ORM/Functional/Ticket/DDC633Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC633Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC633Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC6460Test.php b/tests/Tests/ORM/Functional/Ticket/DDC6460Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC6460Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC6460Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC6558Test.php b/tests/Tests/ORM/Functional/Ticket/DDC6558Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC6558Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC6558Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC656Test.php b/tests/Tests/ORM/Functional/Ticket/DDC656Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC656Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC656Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC657Test.php b/tests/Tests/ORM/Functional/Ticket/DDC657Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC657Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC657Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC698Test.php b/tests/Tests/ORM/Functional/Ticket/DDC698Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC698Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC698Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC69Test.php b/tests/Tests/ORM/Functional/Ticket/DDC69Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC69Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC69Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC719Test.php b/tests/Tests/ORM/Functional/Ticket/DDC719Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC719Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC719Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC735Test.php b/tests/Tests/ORM/Functional/Ticket/DDC735Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC735Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC735Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC736Test.php b/tests/Tests/ORM/Functional/Ticket/DDC736Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC736Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC736Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC748Test.php b/tests/Tests/ORM/Functional/Ticket/DDC748Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC748Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC748Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC767Test.php b/tests/Tests/ORM/Functional/Ticket/DDC767Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC767Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC767Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC7969Test.php b/tests/Tests/ORM/Functional/Ticket/DDC7969Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC7969Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC7969Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC809Test.php b/tests/Tests/ORM/Functional/Ticket/DDC809Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC809Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC809Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC812Test.php b/tests/Tests/ORM/Functional/Ticket/DDC812Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC812Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC812Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC832Test.php b/tests/Tests/ORM/Functional/Ticket/DDC832Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC832Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC832Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC837Test.php b/tests/Tests/ORM/Functional/Ticket/DDC837Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC837Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC837Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC849Test.php b/tests/Tests/ORM/Functional/Ticket/DDC849Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC849Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC849Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC881Test.php b/tests/Tests/ORM/Functional/Ticket/DDC881Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC881Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC881Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC933Test.php b/tests/Tests/ORM/Functional/Ticket/DDC933Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC933Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC933Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC949Test.php b/tests/Tests/ORM/Functional/Ticket/DDC949Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC949Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC949Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC960Test.php b/tests/Tests/ORM/Functional/Ticket/DDC960Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC960Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC960Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC992Test.php b/tests/Tests/ORM/Functional/Ticket/DDC992Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/DDC992Test.php rename to tests/Tests/ORM/Functional/Ticket/DDC992Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10049/GH10049Test.php b/tests/Tests/ORM/Functional/Ticket/GH10049/GH10049Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10049/GH10049Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10049/GH10049Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10049/ReadOnlyPropertyInheritor.php b/tests/Tests/ORM/Functional/Ticket/GH10049/ReadOnlyPropertyInheritor.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10049/ReadOnlyPropertyInheritor.php rename to tests/Tests/ORM/Functional/Ticket/GH10049/ReadOnlyPropertyInheritor.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10049/ReadOnlyPropertyOwner.php b/tests/Tests/ORM/Functional/Ticket/GH10049/ReadOnlyPropertyOwner.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10049/ReadOnlyPropertyOwner.php rename to tests/Tests/ORM/Functional/Ticket/GH10049/ReadOnlyPropertyOwner.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10132Test.php b/tests/Tests/ORM/Functional/Ticket/GH10132Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10132Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10132Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10288Test.php b/tests/Tests/ORM/Functional/Ticket/GH10288Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10288Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10288Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10334Test.php b/tests/Tests/ORM/Functional/Ticket/GH10334Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10334Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10334Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10336Test.php b/tests/Tests/ORM/Functional/Ticket/GH10336Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10336Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10336Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10348Test.php b/tests/Tests/ORM/Functional/Ticket/GH10348Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10348Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10348Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10387Test.php b/tests/Tests/ORM/Functional/Ticket/GH10387Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10387Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10387Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10450Test.php b/tests/Tests/ORM/Functional/Ticket/GH10450Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10450Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10450Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10454Test.php b/tests/Tests/ORM/Functional/Ticket/GH10454Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10454Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10454Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10462Test.php b/tests/Tests/ORM/Functional/Ticket/GH10462Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10462Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10462Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10473Test.php b/tests/Tests/ORM/Functional/Ticket/GH10473Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10473Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10473Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10531Test.php b/tests/Tests/ORM/Functional/Ticket/GH10531Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10531Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10531Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10532Test.php b/tests/Tests/ORM/Functional/Ticket/GH10532Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10532Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10532Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10566Test.php b/tests/Tests/ORM/Functional/Ticket/GH10566Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10566Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10566Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10625Test.php b/tests/Tests/ORM/Functional/Ticket/GH10625Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10625Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10625Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10661/GH10661Test.php b/tests/Tests/ORM/Functional/Ticket/GH10661/GH10661Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10661/GH10661Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10661/GH10661Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10661/InvalidChildEntity.php b/tests/Tests/ORM/Functional/Ticket/GH10661/InvalidChildEntity.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10661/InvalidChildEntity.php rename to tests/Tests/ORM/Functional/Ticket/GH10661/InvalidChildEntity.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10661/InvalidEntity.php b/tests/Tests/ORM/Functional/Ticket/GH10661/InvalidEntity.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10661/InvalidEntity.php rename to tests/Tests/ORM/Functional/Ticket/GH10661/InvalidEntity.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10747Test.php b/tests/Tests/ORM/Functional/Ticket/GH10747Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10747Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10747Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10752Test.php b/tests/Tests/ORM/Functional/Ticket/GH10752Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10752Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10752Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10808Test.php b/tests/Tests/ORM/Functional/Ticket/GH10808Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10808Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10808Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10869Test.php b/tests/Tests/ORM/Functional/Ticket/GH10869Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10869Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10869Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH10880Test.php b/tests/Tests/ORM/Functional/Ticket/GH10880Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH10880Test.php rename to tests/Tests/ORM/Functional/Ticket/GH10880Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH11017/GH11017Entity.php b/tests/Tests/ORM/Functional/Ticket/GH11017/GH11017Entity.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH11017/GH11017Entity.php rename to tests/Tests/ORM/Functional/Ticket/GH11017/GH11017Entity.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH11017/GH11017Enum.php b/tests/Tests/ORM/Functional/Ticket/GH11017/GH11017Enum.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH11017/GH11017Enum.php rename to tests/Tests/ORM/Functional/Ticket/GH11017/GH11017Enum.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH11017/GH11017Test.php b/tests/Tests/ORM/Functional/Ticket/GH11017/GH11017Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH11017/GH11017Test.php rename to tests/Tests/ORM/Functional/Ticket/GH11017/GH11017Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH11037/GH11037Test.php b/tests/Tests/ORM/Functional/Ticket/GH11037/GH11037Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH11037/GH11037Test.php rename to tests/Tests/ORM/Functional/Ticket/GH11037/GH11037Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH11037/IntEntityStatus.php b/tests/Tests/ORM/Functional/Ticket/GH11037/IntEntityStatus.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH11037/IntEntityStatus.php rename to tests/Tests/ORM/Functional/Ticket/GH11037/IntEntityStatus.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH11037/InvalidEntityWithTypedEnum.php b/tests/Tests/ORM/Functional/Ticket/GH11037/InvalidEntityWithTypedEnum.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH11037/InvalidEntityWithTypedEnum.php rename to tests/Tests/ORM/Functional/Ticket/GH11037/InvalidEntityWithTypedEnum.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH11037/StringEntityStatus.php b/tests/Tests/ORM/Functional/Ticket/GH11037/StringEntityStatus.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH11037/StringEntityStatus.php rename to tests/Tests/ORM/Functional/Ticket/GH11037/StringEntityStatus.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH11037/ValidEntityWithTypedEnum.php b/tests/Tests/ORM/Functional/Ticket/GH11037/ValidEntityWithTypedEnum.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH11037/ValidEntityWithTypedEnum.php rename to tests/Tests/ORM/Functional/Ticket/GH11037/ValidEntityWithTypedEnum.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH2947Test.php b/tests/Tests/ORM/Functional/Ticket/GH2947Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH2947Test.php rename to tests/Tests/ORM/Functional/Ticket/GH2947Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH5562Test.php b/tests/Tests/ORM/Functional/Ticket/GH5562Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH5562Test.php rename to tests/Tests/ORM/Functional/Ticket/GH5562Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH5742Test.php b/tests/Tests/ORM/Functional/Ticket/GH5742Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH5742Test.php rename to tests/Tests/ORM/Functional/Ticket/GH5742Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH5762Test.php b/tests/Tests/ORM/Functional/Ticket/GH5762Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH5762Test.php rename to tests/Tests/ORM/Functional/Ticket/GH5762Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH5804Test.php b/tests/Tests/ORM/Functional/Ticket/GH5804Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH5804Test.php rename to tests/Tests/ORM/Functional/Ticket/GH5804Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH5887Test.php b/tests/Tests/ORM/Functional/Ticket/GH5887Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH5887Test.php rename to tests/Tests/ORM/Functional/Ticket/GH5887Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH5988Test.php b/tests/Tests/ORM/Functional/Ticket/GH5988Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH5988Test.php rename to tests/Tests/ORM/Functional/Ticket/GH5988Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH5998Test.php b/tests/Tests/ORM/Functional/Ticket/GH5998Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH5998Test.php rename to tests/Tests/ORM/Functional/Ticket/GH5998Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6029Test.php b/tests/Tests/ORM/Functional/Ticket/GH6029Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH6029Test.php rename to tests/Tests/ORM/Functional/Ticket/GH6029Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6141Test.php b/tests/Tests/ORM/Functional/Ticket/GH6141Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH6141Test.php rename to tests/Tests/ORM/Functional/Ticket/GH6141Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php b/tests/Tests/ORM/Functional/Ticket/GH6217Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php rename to tests/Tests/ORM/Functional/Ticket/GH6217Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6362Test.php b/tests/Tests/ORM/Functional/Ticket/GH6362Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH6362Test.php rename to tests/Tests/ORM/Functional/Ticket/GH6362Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6394Test.php b/tests/Tests/ORM/Functional/Ticket/GH6394Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH6394Test.php rename to tests/Tests/ORM/Functional/Ticket/GH6394Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6402Test.php b/tests/Tests/ORM/Functional/Ticket/GH6402Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH6402Test.php rename to tests/Tests/ORM/Functional/Ticket/GH6402Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6464Test.php b/tests/Tests/ORM/Functional/Ticket/GH6464Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH6464Test.php rename to tests/Tests/ORM/Functional/Ticket/GH6464Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6499OneToManyRelationshipTest.php b/tests/Tests/ORM/Functional/Ticket/GH6499OneToManyRelationshipTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH6499OneToManyRelationshipTest.php rename to tests/Tests/ORM/Functional/Ticket/GH6499OneToManyRelationshipTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6499OneToOneRelationshipTest.php b/tests/Tests/ORM/Functional/Ticket/GH6499OneToOneRelationshipTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH6499OneToOneRelationshipTest.php rename to tests/Tests/ORM/Functional/Ticket/GH6499OneToOneRelationshipTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6499Test.php b/tests/Tests/ORM/Functional/Ticket/GH6499Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH6499Test.php rename to tests/Tests/ORM/Functional/Ticket/GH6499Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6531Test.php b/tests/Tests/ORM/Functional/Ticket/GH6531Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH6531Test.php rename to tests/Tests/ORM/Functional/Ticket/GH6531Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6682Test.php b/tests/Tests/ORM/Functional/Ticket/GH6682Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH6682Test.php rename to tests/Tests/ORM/Functional/Ticket/GH6682Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6699Test.php b/tests/Tests/ORM/Functional/Ticket/GH6699Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH6699Test.php rename to tests/Tests/ORM/Functional/Ticket/GH6699Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6740Test.php b/tests/Tests/ORM/Functional/Ticket/GH6740Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH6740Test.php rename to tests/Tests/ORM/Functional/Ticket/GH6740Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6823Test.php b/tests/Tests/ORM/Functional/Ticket/GH6823Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH6823Test.php rename to tests/Tests/ORM/Functional/Ticket/GH6823Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6937Test.php b/tests/Tests/ORM/Functional/Ticket/GH6937Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH6937Test.php rename to tests/Tests/ORM/Functional/Ticket/GH6937Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7006Test.php b/tests/Tests/ORM/Functional/Ticket/GH7006Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7006Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7006Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7012Test.php b/tests/Tests/ORM/Functional/Ticket/GH7012Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7012Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7012Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7062Test.php b/tests/Tests/ORM/Functional/Ticket/GH7062Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7062Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7062Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7067Test.php b/tests/Tests/ORM/Functional/Ticket/GH7067Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7067Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7067Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7068Test.php b/tests/Tests/ORM/Functional/Ticket/GH7068Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7068Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7068Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7079Test.php b/tests/Tests/ORM/Functional/Ticket/GH7079Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7079Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7079Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7180Test.php b/tests/Tests/ORM/Functional/Ticket/GH7180Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7180Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7180Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7259Test.php b/tests/Tests/ORM/Functional/Ticket/GH7259Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7259Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7259Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7286Test.php b/tests/Tests/ORM/Functional/Ticket/GH7286Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7286Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7286Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7366Test.php b/tests/Tests/ORM/Functional/Ticket/GH7366Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7366Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7366Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7496WithToIterableTest.php b/tests/Tests/ORM/Functional/Ticket/GH7496WithToIterableTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7496WithToIterableTest.php rename to tests/Tests/ORM/Functional/Ticket/GH7496WithToIterableTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7505Test.php b/tests/Tests/ORM/Functional/Ticket/GH7505Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7505Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7505Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7512Test.php b/tests/Tests/ORM/Functional/Ticket/GH7512Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7512Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7512Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7629Test.php b/tests/Tests/ORM/Functional/Ticket/GH7629Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7629Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7629Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7661Test.php b/tests/Tests/ORM/Functional/Ticket/GH7661Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7661Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7661Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7684Test.php b/tests/Tests/ORM/Functional/Ticket/GH7684Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7684Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7684Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7717Test.php b/tests/Tests/ORM/Functional/Ticket/GH7717Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7717Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7717Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7735Test.php b/tests/Tests/ORM/Functional/Ticket/GH7735Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7735Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7735Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7737Test.php b/tests/Tests/ORM/Functional/Ticket/GH7737Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7737Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7737Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7761Test.php b/tests/Tests/ORM/Functional/Ticket/GH7761Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7761Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7761Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7767Test.php b/tests/Tests/ORM/Functional/Ticket/GH7767Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7767Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7767Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7820Test.php b/tests/Tests/ORM/Functional/Ticket/GH7820Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7820Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7820Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7829Test.php b/tests/Tests/ORM/Functional/Ticket/GH7829Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7829Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7829Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7836Test.php b/tests/Tests/ORM/Functional/Ticket/GH7836Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7836Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7836Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7864Test.php b/tests/Tests/ORM/Functional/Ticket/GH7864Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7864Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7864Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7869Test.php b/tests/Tests/ORM/Functional/Ticket/GH7869Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7869Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7869Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7875Test.php b/tests/Tests/ORM/Functional/Ticket/GH7875Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7875Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7875Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH7941Test.php b/tests/Tests/ORM/Functional/Ticket/GH7941Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH7941Test.php rename to tests/Tests/ORM/Functional/Ticket/GH7941Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH8055Test.php b/tests/Tests/ORM/Functional/Ticket/GH8055Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH8055Test.php rename to tests/Tests/ORM/Functional/Ticket/GH8055Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH8061Test.php b/tests/Tests/ORM/Functional/Ticket/GH8061Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH8061Test.php rename to tests/Tests/ORM/Functional/Ticket/GH8061Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH8127Test.php b/tests/Tests/ORM/Functional/Ticket/GH8127Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH8127Test.php rename to tests/Tests/ORM/Functional/Ticket/GH8127Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH8217Test.php b/tests/Tests/ORM/Functional/Ticket/GH8217Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH8217Test.php rename to tests/Tests/ORM/Functional/Ticket/GH8217Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH8415Test.php b/tests/Tests/ORM/Functional/Ticket/GH8415Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH8415Test.php rename to tests/Tests/ORM/Functional/Ticket/GH8415Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH8415ToManyAssociationTest.php b/tests/Tests/ORM/Functional/Ticket/GH8415ToManyAssociationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH8415ToManyAssociationTest.php rename to tests/Tests/ORM/Functional/Ticket/GH8415ToManyAssociationTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH8443Test.php b/tests/Tests/ORM/Functional/Ticket/GH8443Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH8443Test.php rename to tests/Tests/ORM/Functional/Ticket/GH8443Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH8499Test.php b/tests/Tests/ORM/Functional/Ticket/GH8499Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH8499Test.php rename to tests/Tests/ORM/Functional/Ticket/GH8499Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH8663Test.php b/tests/Tests/ORM/Functional/Ticket/GH8663Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH8663Test.php rename to tests/Tests/ORM/Functional/Ticket/GH8663Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH8914Test.php b/tests/Tests/ORM/Functional/Ticket/GH8914Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH8914Test.php rename to tests/Tests/ORM/Functional/Ticket/GH8914Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH9027Test.php b/tests/Tests/ORM/Functional/Ticket/GH9027Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH9027Test.php rename to tests/Tests/ORM/Functional/Ticket/GH9027Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH9109Test.php b/tests/Tests/ORM/Functional/Ticket/GH9109Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH9109Test.php rename to tests/Tests/ORM/Functional/Ticket/GH9109Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH9192Test.php b/tests/Tests/ORM/Functional/Ticket/GH9192Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH9192Test.php rename to tests/Tests/ORM/Functional/Ticket/GH9192Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH9230Test.php b/tests/Tests/ORM/Functional/Ticket/GH9230Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH9230Test.php rename to tests/Tests/ORM/Functional/Ticket/GH9230Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH9335Test.php b/tests/Tests/ORM/Functional/Ticket/GH9335Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH9335Test.php rename to tests/Tests/ORM/Functional/Ticket/GH9335Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH9467/GH9467Test.php b/tests/Tests/ORM/Functional/Ticket/GH9467/GH9467Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH9467/GH9467Test.php rename to tests/Tests/ORM/Functional/Ticket/GH9467/GH9467Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceChild.php b/tests/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceChild.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceChild.php rename to tests/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceChild.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceNonInsertableColumn.php b/tests/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceNonInsertableColumn.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceNonInsertableColumn.php rename to tests/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceNonInsertableColumn.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceNonUpdatableColumn.php b/tests/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceNonUpdatableColumn.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceNonUpdatableColumn.php rename to tests/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceNonUpdatableColumn.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceNonWritableColumn.php b/tests/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceNonWritableColumn.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceNonWritableColumn.php rename to tests/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceNonWritableColumn.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceRoot.php b/tests/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceRoot.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceRoot.php rename to tests/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceRoot.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceWritableColumn.php b/tests/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceWritableColumn.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceWritableColumn.php rename to tests/Tests/ORM/Functional/Ticket/GH9467/JoinedInheritanceWritableColumn.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH9516Test.php b/tests/Tests/ORM/Functional/Ticket/GH9516Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH9516Test.php rename to tests/Tests/ORM/Functional/Ticket/GH9516Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH9579Test.php b/tests/Tests/ORM/Functional/Ticket/GH9579Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH9579Test.php rename to tests/Tests/ORM/Functional/Ticket/GH9579Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH9807Test.php b/tests/Tests/ORM/Functional/Ticket/GH9807Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/GH9807Test.php rename to tests/Tests/ORM/Functional/Ticket/GH9807Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/Issue5989Test.php b/tests/Tests/ORM/Functional/Ticket/Issue5989Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/Issue5989Test.php rename to tests/Tests/ORM/Functional/Ticket/Issue5989Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/Issue9300Test.php b/tests/Tests/ORM/Functional/Ticket/Issue9300Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/Issue9300Test.php rename to tests/Tests/ORM/Functional/Ticket/Issue9300Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/Ticket2481Test.php b/tests/Tests/ORM/Functional/Ticket/Ticket2481Test.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/Ticket2481Test.php rename to tests/Tests/ORM/Functional/Ticket/Ticket2481Test.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfAbstractTest.php b/tests/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfAbstractTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfAbstractTest.php rename to tests/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfAbstractTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfMultiLevelTest.php b/tests/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfMultiLevelTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfMultiLevelTest.php rename to tests/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfMultiLevelTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfParametricTest.php b/tests/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfParametricTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfParametricTest.php rename to tests/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfParametricTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfTest.php b/tests/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfTest.php rename to tests/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfWithMultipleParametersTest.php b/tests/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfWithMultipleParametersTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfWithMultipleParametersTest.php rename to tests/Tests/ORM/Functional/Ticket/Ticket4646InstanceOfWithMultipleParametersTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/TypeTest.php b/tests/Tests/ORM/Functional/TypeTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/TypeTest.php rename to tests/Tests/ORM/Functional/TypeTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/TypeValueSqlTest.php b/tests/Tests/ORM/Functional/TypeValueSqlTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/TypeValueSqlTest.php rename to tests/Tests/ORM/Functional/TypeValueSqlTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/UnitOfWorkLifecycleTest.php b/tests/Tests/ORM/Functional/UnitOfWorkLifecycleTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/UnitOfWorkLifecycleTest.php rename to tests/Tests/ORM/Functional/UnitOfWorkLifecycleTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ValueConversionType/ManyToManyCompositeIdForeignKeyTest.php b/tests/Tests/ORM/Functional/ValueConversionType/ManyToManyCompositeIdForeignKeyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ValueConversionType/ManyToManyCompositeIdForeignKeyTest.php rename to tests/Tests/ORM/Functional/ValueConversionType/ManyToManyCompositeIdForeignKeyTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ValueConversionType/ManyToManyCompositeIdTest.php b/tests/Tests/ORM/Functional/ValueConversionType/ManyToManyCompositeIdTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ValueConversionType/ManyToManyCompositeIdTest.php rename to tests/Tests/ORM/Functional/ValueConversionType/ManyToManyCompositeIdTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ValueConversionType/ManyToManyExtraLazyTest.php b/tests/Tests/ORM/Functional/ValueConversionType/ManyToManyExtraLazyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ValueConversionType/ManyToManyExtraLazyTest.php rename to tests/Tests/ORM/Functional/ValueConversionType/ManyToManyExtraLazyTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ValueConversionType/ManyToManyTest.php b/tests/Tests/ORM/Functional/ValueConversionType/ManyToManyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ValueConversionType/ManyToManyTest.php rename to tests/Tests/ORM/Functional/ValueConversionType/ManyToManyTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ValueConversionType/OneToManyCompositeIdForeignKeyTest.php b/tests/Tests/ORM/Functional/ValueConversionType/OneToManyCompositeIdForeignKeyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ValueConversionType/OneToManyCompositeIdForeignKeyTest.php rename to tests/Tests/ORM/Functional/ValueConversionType/OneToManyCompositeIdForeignKeyTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ValueConversionType/OneToManyCompositeIdTest.php b/tests/Tests/ORM/Functional/ValueConversionType/OneToManyCompositeIdTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ValueConversionType/OneToManyCompositeIdTest.php rename to tests/Tests/ORM/Functional/ValueConversionType/OneToManyCompositeIdTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ValueConversionType/OneToManyExtraLazyTest.php b/tests/Tests/ORM/Functional/ValueConversionType/OneToManyExtraLazyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ValueConversionType/OneToManyExtraLazyTest.php rename to tests/Tests/ORM/Functional/ValueConversionType/OneToManyExtraLazyTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ValueConversionType/OneToManyTest.php b/tests/Tests/ORM/Functional/ValueConversionType/OneToManyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ValueConversionType/OneToManyTest.php rename to tests/Tests/ORM/Functional/ValueConversionType/OneToManyTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ValueConversionType/OneToOneCompositeIdForeignKeyTest.php b/tests/Tests/ORM/Functional/ValueConversionType/OneToOneCompositeIdForeignKeyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ValueConversionType/OneToOneCompositeIdForeignKeyTest.php rename to tests/Tests/ORM/Functional/ValueConversionType/OneToOneCompositeIdForeignKeyTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ValueConversionType/OneToOneCompositeIdTest.php b/tests/Tests/ORM/Functional/ValueConversionType/OneToOneCompositeIdTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ValueConversionType/OneToOneCompositeIdTest.php rename to tests/Tests/ORM/Functional/ValueConversionType/OneToOneCompositeIdTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ValueConversionType/OneToOneTest.php b/tests/Tests/ORM/Functional/ValueConversionType/OneToOneTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ValueConversionType/OneToOneTest.php rename to tests/Tests/ORM/Functional/ValueConversionType/OneToOneTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/ValueObjectsTest.php b/tests/Tests/ORM/Functional/ValueObjectsTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/ValueObjectsTest.php rename to tests/Tests/ORM/Functional/ValueObjectsTest.php diff --git a/tests/Doctrine/Tests/ORM/Functional/VersionedOneToOneTest.php b/tests/Tests/ORM/Functional/VersionedOneToOneTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Functional/VersionedOneToOneTest.php rename to tests/Tests/ORM/Functional/VersionedOneToOneTest.php diff --git a/tests/Doctrine/Tests/ORM/Hydration/AbstractHydratorTest.php b/tests/Tests/ORM/Hydration/AbstractHydratorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Hydration/AbstractHydratorTest.php rename to tests/Tests/ORM/Hydration/AbstractHydratorTest.php diff --git a/tests/Doctrine/Tests/ORM/Hydration/ArrayHydratorTest.php b/tests/Tests/ORM/Hydration/ArrayHydratorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Hydration/ArrayHydratorTest.php rename to tests/Tests/ORM/Hydration/ArrayHydratorTest.php diff --git a/tests/Doctrine/Tests/ORM/Hydration/CustomHydratorTest.php b/tests/Tests/ORM/Hydration/CustomHydratorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Hydration/CustomHydratorTest.php rename to tests/Tests/ORM/Hydration/CustomHydratorTest.php diff --git a/tests/Doctrine/Tests/ORM/Hydration/HydrationTestCase.php b/tests/Tests/ORM/Hydration/HydrationTestCase.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Hydration/HydrationTestCase.php rename to tests/Tests/ORM/Hydration/HydrationTestCase.php diff --git a/tests/Doctrine/Tests/ORM/Hydration/ObjectHydratorTest.php b/tests/Tests/ORM/Hydration/ObjectHydratorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Hydration/ObjectHydratorTest.php rename to tests/Tests/ORM/Hydration/ObjectHydratorTest.php diff --git a/tests/Doctrine/Tests/ORM/Hydration/ResultSetMappingTest.php b/tests/Tests/ORM/Hydration/ResultSetMappingTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Hydration/ResultSetMappingTest.php rename to tests/Tests/ORM/Hydration/ResultSetMappingTest.php diff --git a/tests/Doctrine/Tests/ORM/Hydration/ScalarColumnHydratorTest.php b/tests/Tests/ORM/Hydration/ScalarColumnHydratorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Hydration/ScalarColumnHydratorTest.php rename to tests/Tests/ORM/Hydration/ScalarColumnHydratorTest.php diff --git a/tests/Doctrine/Tests/ORM/Hydration/ScalarHydratorTest.php b/tests/Tests/ORM/Hydration/ScalarHydratorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Hydration/ScalarHydratorTest.php rename to tests/Tests/ORM/Hydration/ScalarHydratorTest.php diff --git a/tests/Doctrine/Tests/ORM/Hydration/SimpleObjectHydratorTest.php b/tests/Tests/ORM/Hydration/SimpleObjectHydratorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Hydration/SimpleObjectHydratorTest.php rename to tests/Tests/ORM/Hydration/SimpleObjectHydratorTest.php diff --git a/tests/Doctrine/Tests/ORM/Hydration/SingleScalarHydratorTest.php b/tests/Tests/ORM/Hydration/SingleScalarHydratorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Hydration/SingleScalarHydratorTest.php rename to tests/Tests/ORM/Hydration/SingleScalarHydratorTest.php diff --git a/tests/Doctrine/Tests/ORM/Id/AssignedGeneratorTest.php b/tests/Tests/ORM/Id/AssignedGeneratorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Id/AssignedGeneratorTest.php rename to tests/Tests/ORM/Id/AssignedGeneratorTest.php diff --git a/tests/Doctrine/Tests/ORM/Id/SequenceGeneratorTest.php b/tests/Tests/ORM/Id/SequenceGeneratorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Id/SequenceGeneratorTest.php rename to tests/Tests/ORM/Id/SequenceGeneratorTest.php diff --git a/tests/Doctrine/Tests/ORM/Internal/HydrationCompleteHandlerTest.php b/tests/Tests/ORM/Internal/HydrationCompleteHandlerTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Internal/HydrationCompleteHandlerTest.php rename to tests/Tests/ORM/Internal/HydrationCompleteHandlerTest.php diff --git a/tests/Doctrine/Tests/ORM/Internal/TopologicalSortTest.php b/tests/Tests/ORM/Internal/TopologicalSortTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Internal/TopologicalSortTest.php rename to tests/Tests/ORM/Internal/TopologicalSortTest.php diff --git a/tests/Doctrine/Tests/ORM/LazyCriteriaCollectionTest.php b/tests/Tests/ORM/LazyCriteriaCollectionTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/LazyCriteriaCollectionTest.php rename to tests/Tests/ORM/LazyCriteriaCollectionTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/AnsiQuoteStrategyTest.php b/tests/Tests/ORM/Mapping/AnsiQuoteStrategyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/AnsiQuoteStrategyTest.php rename to tests/Tests/ORM/Mapping/AnsiQuoteStrategyTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/AssociationMappingTest.php b/tests/Tests/ORM/Mapping/AssociationMappingTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/AssociationMappingTest.php rename to tests/Tests/ORM/Mapping/AssociationMappingTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/AttributeDriverTest.php b/tests/Tests/ORM/Mapping/AttributeDriverTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/AttributeDriverTest.php rename to tests/Tests/ORM/Mapping/AttributeDriverTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/AttributeReaderTest.php b/tests/Tests/ORM/Mapping/AttributeReaderTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/AttributeReaderTest.php rename to tests/Tests/ORM/Mapping/AttributeReaderTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/BasicInheritanceMappingTest.php b/tests/Tests/ORM/Mapping/BasicInheritanceMappingTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/BasicInheritanceMappingTest.php rename to tests/Tests/ORM/Mapping/BasicInheritanceMappingTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/ClassMetadataBuilderTest.php b/tests/Tests/ORM/Mapping/ClassMetadataBuilderTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/ClassMetadataBuilderTest.php rename to tests/Tests/ORM/Mapping/ClassMetadataBuilderTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/ClassMetadataFactoryTest.php b/tests/Tests/ORM/Mapping/ClassMetadataFactoryTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/ClassMetadataFactoryTest.php rename to tests/Tests/ORM/Mapping/ClassMetadataFactoryTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/ClassMetadataLoadEventTest.php b/tests/Tests/ORM/Mapping/ClassMetadataLoadEventTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/ClassMetadataLoadEventTest.php rename to tests/Tests/ORM/Mapping/ClassMetadataLoadEventTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/ClassMetadataTest.php b/tests/Tests/ORM/Mapping/ClassMetadataTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/ClassMetadataTest.php rename to tests/Tests/ORM/Mapping/ClassMetadataTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/DefaultQuoteStrategyTest.php b/tests/Tests/ORM/Mapping/DefaultQuoteStrategyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/DefaultQuoteStrategyTest.php rename to tests/Tests/ORM/Mapping/DefaultQuoteStrategyTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/DiscriminatorColumnMappingTest.php b/tests/Tests/ORM/Mapping/DiscriminatorColumnMappingTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/DiscriminatorColumnMappingTest.php rename to tests/Tests/ORM/Mapping/DiscriminatorColumnMappingTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/EmbeddedClassMappingTest.php b/tests/Tests/ORM/Mapping/EmbeddedClassMappingTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/EmbeddedClassMappingTest.php rename to tests/Tests/ORM/Mapping/EmbeddedClassMappingTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/EntityListenerResolverTest.php b/tests/Tests/ORM/Mapping/EntityListenerResolverTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/EntityListenerResolverTest.php rename to tests/Tests/ORM/Mapping/EntityListenerResolverTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/FieldBuilderTest.php b/tests/Tests/ORM/Mapping/FieldBuilderTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/FieldBuilderTest.php rename to tests/Tests/ORM/Mapping/FieldBuilderTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/FieldMappingTest.php b/tests/Tests/ORM/Mapping/FieldMappingTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/FieldMappingTest.php rename to tests/Tests/ORM/Mapping/FieldMappingTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/Fixtures/AttributeEntityWithNestedJoinColumns.php b/tests/Tests/ORM/Mapping/Fixtures/AttributeEntityWithNestedJoinColumns.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/Fixtures/AttributeEntityWithNestedJoinColumns.php rename to tests/Tests/ORM/Mapping/Fixtures/AttributeEntityWithNestedJoinColumns.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/InverseSideMappingTest.php b/tests/Tests/ORM/Mapping/InverseSideMappingTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/InverseSideMappingTest.php rename to tests/Tests/ORM/Mapping/InverseSideMappingTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/JoinColumnMappingTest.php b/tests/Tests/ORM/Mapping/JoinColumnMappingTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/JoinColumnMappingTest.php rename to tests/Tests/ORM/Mapping/JoinColumnMappingTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/JoinTableMappingTest.php b/tests/Tests/ORM/Mapping/JoinTableMappingTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/JoinTableMappingTest.php rename to tests/Tests/ORM/Mapping/JoinTableMappingTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/ManyToManyOwningSideMappingTest.php b/tests/Tests/ORM/Mapping/ManyToManyOwningSideMappingTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/ManyToManyOwningSideMappingTest.php rename to tests/Tests/ORM/Mapping/ManyToManyOwningSideMappingTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/ManyToOneAssociationMappingTest.php b/tests/Tests/ORM/Mapping/ManyToOneAssociationMappingTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/ManyToOneAssociationMappingTest.php rename to tests/Tests/ORM/Mapping/ManyToOneAssociationMappingTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/MappingDriverTestCase.php b/tests/Tests/ORM/Mapping/MappingDriverTestCase.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/MappingDriverTestCase.php rename to tests/Tests/ORM/Mapping/MappingDriverTestCase.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/NamingStrategy/JoinColumnClassNamingStrategy.php b/tests/Tests/ORM/Mapping/NamingStrategy/JoinColumnClassNamingStrategy.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/NamingStrategy/JoinColumnClassNamingStrategy.php rename to tests/Tests/ORM/Mapping/NamingStrategy/JoinColumnClassNamingStrategy.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/NamingStrategyTest.php b/tests/Tests/ORM/Mapping/NamingStrategyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/NamingStrategyTest.php rename to tests/Tests/ORM/Mapping/NamingStrategyTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/OneToOneOwningSideMappingTest.php b/tests/Tests/ORM/Mapping/OneToOneOwningSideMappingTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/OneToOneOwningSideMappingTest.php rename to tests/Tests/ORM/Mapping/OneToOneOwningSideMappingTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/OwningSideMappingTest.php b/tests/Tests/ORM/Mapping/OwningSideMappingTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/OwningSideMappingTest.php rename to tests/Tests/ORM/Mapping/OwningSideMappingTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/QuoteStrategyTest.php b/tests/Tests/ORM/Mapping/QuoteStrategyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/QuoteStrategyTest.php rename to tests/Tests/ORM/Mapping/QuoteStrategyTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/ReflectionEmbeddedPropertyTest.php b/tests/Tests/ORM/Mapping/ReflectionEmbeddedPropertyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/ReflectionEmbeddedPropertyTest.php rename to tests/Tests/ORM/Mapping/ReflectionEmbeddedPropertyTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/ReflectionReadonlyPropertyTest.php b/tests/Tests/ORM/Mapping/ReflectionReadonlyPropertyTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/ReflectionReadonlyPropertyTest.php rename to tests/Tests/ORM/Mapping/ReflectionReadonlyPropertyTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/StaticPHPMappingDriverTest.php b/tests/Tests/ORM/Mapping/StaticPHPMappingDriverTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/StaticPHPMappingDriverTest.php rename to tests/Tests/ORM/Mapping/StaticPHPMappingDriverTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/Symfony/DriverTestCase.php b/tests/Tests/ORM/Mapping/Symfony/DriverTestCase.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/Symfony/DriverTestCase.php rename to tests/Tests/ORM/Mapping/Symfony/DriverTestCase.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/Symfony/XmlDriverTest.php b/tests/Tests/ORM/Mapping/Symfony/XmlDriverTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/Symfony/XmlDriverTest.php rename to tests/Tests/ORM/Mapping/Symfony/XmlDriverTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/ToManyAssociationMappingTest.php b/tests/Tests/ORM/Mapping/ToManyAssociationMappingTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/ToManyAssociationMappingTest.php rename to tests/Tests/ORM/Mapping/ToManyAssociationMappingTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/TypedFieldMapper/CustomIntAsStringTypedFieldMapper.php b/tests/Tests/ORM/Mapping/TypedFieldMapper/CustomIntAsStringTypedFieldMapper.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/TypedFieldMapper/CustomIntAsStringTypedFieldMapper.php rename to tests/Tests/ORM/Mapping/TypedFieldMapper/CustomIntAsStringTypedFieldMapper.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/TypedFieldMapperTest.php b/tests/Tests/ORM/Mapping/TypedFieldMapperTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/TypedFieldMapperTest.php rename to tests/Tests/ORM/Mapping/TypedFieldMapperTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/XmlMappingDriverTest.php b/tests/Tests/ORM/Mapping/XmlMappingDriverTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/XmlMappingDriverTest.php rename to tests/Tests/ORM/Mapping/XmlMappingDriverTest.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.Models.Enums.Card.php b/tests/Tests/ORM/Mapping/php/Doctrine.Tests.Models.Enums.Card.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.Models.Enums.Card.php rename to tests/Tests/ORM/Mapping/php/Doctrine.Tests.Models.Enums.Card.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.Models.TypedProperties.UserTypedWithCustomTypedField.php b/tests/Tests/ORM/Mapping/php/Doctrine.Tests.Models.TypedProperties.UserTypedWithCustomTypedField.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.Models.TypedProperties.UserTypedWithCustomTypedField.php rename to tests/Tests/ORM/Mapping/php/Doctrine.Tests.Models.TypedProperties.UserTypedWithCustomTypedField.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.Models.Upsertable.Insertable.php b/tests/Tests/ORM/Mapping/php/Doctrine.Tests.Models.Upsertable.Insertable.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.Models.Upsertable.Insertable.php rename to tests/Tests/ORM/Mapping/php/Doctrine.Tests.Models.Upsertable.Insertable.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.Models.Upsertable.Updatable.php b/tests/Tests/ORM/Mapping/php/Doctrine.Tests.Models.Upsertable.Updatable.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.Models.Upsertable.Updatable.php rename to tests/Tests/ORM/Mapping/php/Doctrine.Tests.Models.Upsertable.Updatable.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.ORM.Mapping.GH10288EnumTypePerson.php b/tests/Tests/ORM/Mapping/php/Doctrine.Tests.ORM.Mapping.GH10288EnumTypePerson.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.ORM.Mapping.GH10288EnumTypePerson.php rename to tests/Tests/ORM/Mapping/php/Doctrine.Tests.ORM.Mapping.GH10288EnumTypePerson.php diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/CatNoId.dcm.xml b/tests/Tests/ORM/Mapping/xml/CatNoId.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/CatNoId.dcm.xml rename to tests/Tests/ORM/Mapping/xml/CatNoId.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/DDC2429Book.orm.xml b/tests/Tests/ORM/Mapping/xml/DDC2429Book.orm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/DDC2429Book.orm.xml rename to tests/Tests/ORM/Mapping/xml/DDC2429Book.orm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/DDC2429Novel.orm.xml b/tests/Tests/ORM/Mapping/xml/DDC2429Novel.orm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/DDC2429Novel.orm.xml rename to tests/Tests/ORM/Mapping/xml/DDC2429Novel.orm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.CMS.CmsAddress.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.CMS.CmsAddress.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.CMS.CmsAddress.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.CMS.CmsAddress.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.CMS.CmsUser.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.CMS.CmsUser.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.CMS.CmsUser.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.CMS.CmsUser.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Cache.City.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Cache.City.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Cache.City.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Cache.City.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyContract.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyContract.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyContract.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyContract.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyFixContract.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyFixContract.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyFixContract.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyFixContract.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyFlexContract.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyFlexContract.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyFlexContract.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyFlexContract.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyFlexUltraContract.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyFlexUltraContract.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyFlexUltraContract.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyFlexUltraContract.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyPerson.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyPerson.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyPerson.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Company.CompanyPerson.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC117.DDC117Translation.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC117.DDC117Translation.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC117.DDC117Translation.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC117.DDC117Translation.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC1476.DDC1476EntityWithDefaultFieldType.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC1476.DDC1476EntityWithDefaultFieldType.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC1476.DDC1476EntityWithDefaultFieldType.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC1476.DDC1476EntityWithDefaultFieldType.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC2825.ExplicitSchemaAndTable.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC2825.ExplicitSchemaAndTable.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC2825.ExplicitSchemaAndTable.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC2825.ExplicitSchemaAndTable.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC2825.SchemaAndTableInTableName.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC2825.SchemaAndTableInTableName.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC2825.SchemaAndTableInTableName.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC2825.SchemaAndTableInTableName.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3293.DDC3293Address.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3293.DDC3293Address.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3293.DDC3293Address.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3293.DDC3293Address.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3293.DDC3293User.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3293.DDC3293User.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3293.DDC3293User.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3293.DDC3293User.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3293.DDC3293UserPrefixed.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3293.DDC3293UserPrefixed.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3293.DDC3293UserPrefixed.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3293.DDC3293UserPrefixed.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3579.DDC3579Admin.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3579.DDC3579Admin.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3579.DDC3579Admin.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3579.DDC3579Admin.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3579.DDC3579User.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3579.DDC3579User.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3579.DDC3579User.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC3579.DDC3579User.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC5934.DDC5934BaseContract.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC5934.DDC5934BaseContract.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC5934.DDC5934BaseContract.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC5934.DDC5934BaseContract.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC5934.DDC5934Contract.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC5934.DDC5934Contract.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC5934.DDC5934Contract.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC5934.DDC5934Contract.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC869.DDC869ChequePayment.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC869.DDC869ChequePayment.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC869.DDC869ChequePayment.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC869.DDC869ChequePayment.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC869.DDC869CreditCardPayment.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC869.DDC869CreditCardPayment.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC869.DDC869CreditCardPayment.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC869.DDC869CreditCardPayment.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC869.DDC869Payment.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC869.DDC869Payment.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC869.DDC869Payment.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC869.DDC869Payment.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889Class.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889Class.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889Class.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889Class.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889Entity.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889Entity.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889Entity.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889Entity.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889SuperClass.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889SuperClass.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889SuperClass.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889SuperClass.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC964.DDC964Admin.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC964.DDC964Admin.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC964.DDC964Admin.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC964.DDC964Admin.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC964.DDC964Guest.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC964.DDC964Guest.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC964.DDC964Guest.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC964.DDC964Guest.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC964.DDC964User.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC964.DDC964User.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC964.DDC964User.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC964.DDC964User.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Enums.Card.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Enums.Card.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Enums.Card.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Enums.Card.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.GH7141.GH7141Article.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.GH7141.GH7141Article.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.GH7141.GH7141Article.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.GH7141.GH7141Article.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.GH7316.GH7316Article.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.GH7316.GH7316Article.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.GH7316.GH7316Article.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.GH7316.GH7316Article.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Generic.BooleanModel.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Generic.BooleanModel.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Generic.BooleanModel.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Generic.BooleanModel.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Project.Project.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Project.Project.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Project.Project.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Project.Project.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Project.ProjectInvalidMapping.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Project.ProjectInvalidMapping.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Project.ProjectInvalidMapping.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Project.ProjectInvalidMapping.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.TypedProperties.UserTyped.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.TypedProperties.UserTyped.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.TypedProperties.UserTyped.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.TypedProperties.UserTyped.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.TypedProperties.UserTypedWithCustomTypedField.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.TypedProperties.UserTypedWithCustomTypedField.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.TypedProperties.UserTypedWithCustomTypedField.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.TypedProperties.UserTypedWithCustomTypedField.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Upsertable.Insertable.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Upsertable.Insertable.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Upsertable.Insertable.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Upsertable.Insertable.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Upsertable.Updatable.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Upsertable.Updatable.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Upsertable.Updatable.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.Upsertable.Updatable.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.ValueObjects.Name.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.ValueObjects.Name.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.ValueObjects.Name.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.ValueObjects.Name.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.ValueObjects.Person.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.ValueObjects.Person.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.ValueObjects.Person.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.ValueObjects.Person.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.Animal.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.Animal.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.Animal.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.Animal.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.CTI.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.CTI.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.CTI.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.CTI.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.Comment.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.Comment.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.Comment.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.Comment.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.DDC1170Entity.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.DDC1170Entity.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.DDC1170Entity.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.DDC1170Entity.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.DDC807Entity.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.DDC807Entity.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.DDC807Entity.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.DDC807Entity.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.GH10288EnumTypePerson.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.GH10288EnumTypePerson.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.GH10288EnumTypePerson.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.GH10288EnumTypePerson.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.ReservedWordInTableColumn.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.ReservedWordInTableColumn.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.ReservedWordInTableColumn.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.ReservedWordInTableColumn.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.SingleTableEntityIncompleteDiscriminatorColumnMapping.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.SingleTableEntityIncompleteDiscriminatorColumnMapping.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.SingleTableEntityIncompleteDiscriminatorColumnMapping.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.SingleTableEntityIncompleteDiscriminatorColumnMapping.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.SingleTableEntityNoDiscriminatorColumnMapping.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.SingleTableEntityNoDiscriminatorColumnMapping.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.SingleTableEntityNoDiscriminatorColumnMapping.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.SingleTableEntityNoDiscriminatorColumnMapping.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.User.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.User.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.User.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.User.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserIncorrectAttributes.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserIncorrectAttributes.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserIncorrectAttributes.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserIncorrectAttributes.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserIncorrectIndex.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserIncorrectIndex.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserIncorrectIndex.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserIncorrectIndex.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserIncorrectUniqueConstraint.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserIncorrectUniqueConstraint.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserIncorrectUniqueConstraint.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserIncorrectUniqueConstraint.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserMissingAttributes.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserMissingAttributes.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserMissingAttributes.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.UserMissingAttributes.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.XMLSLC.dcm.xml b/tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.XMLSLC.dcm.xml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.XMLSLC.dcm.xml rename to tests/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.XMLSLC.dcm.xml diff --git a/tests/Doctrine/Tests/ORM/Mapping/yaml/Doctrine.Tests.Models.TypedProperties.UserTypedWithCustomTypedField.dcm.yml b/tests/Tests/ORM/Mapping/yaml/Doctrine.Tests.Models.TypedProperties.UserTypedWithCustomTypedField.dcm.yml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/yaml/Doctrine.Tests.Models.TypedProperties.UserTypedWithCustomTypedField.dcm.yml rename to tests/Tests/ORM/Mapping/yaml/Doctrine.Tests.Models.TypedProperties.UserTypedWithCustomTypedField.dcm.yml diff --git a/tests/Doctrine/Tests/ORM/Mapping/yaml/Doctrine.Tests.ORM.Mapping.GH10288EnumTypePerson.dcm.yml b/tests/Tests/ORM/Mapping/yaml/Doctrine.Tests.ORM.Mapping.GH10288EnumTypePerson.dcm.yml similarity index 100% rename from tests/Doctrine/Tests/ORM/Mapping/yaml/Doctrine.Tests.ORM.Mapping.GH10288EnumTypePerson.dcm.yml rename to tests/Tests/ORM/Mapping/yaml/Doctrine.Tests.ORM.Mapping.GH10288EnumTypePerson.dcm.yml diff --git a/tests/Doctrine/Tests/ORM/ORMInvalidArgumentExceptionTest.php b/tests/Tests/ORM/ORMInvalidArgumentExceptionTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/ORMInvalidArgumentExceptionTest.php rename to tests/Tests/ORM/ORMInvalidArgumentExceptionTest.php diff --git a/tests/Doctrine/Tests/ORM/ORMSetupTest.php b/tests/Tests/ORM/ORMSetupTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/ORMSetupTest.php rename to tests/Tests/ORM/ORMSetupTest.php diff --git a/tests/Doctrine/Tests/ORM/Performance/SecondLevelCacheTest.php b/tests/Tests/ORM/Performance/SecondLevelCacheTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Performance/SecondLevelCacheTest.php rename to tests/Tests/ORM/Performance/SecondLevelCacheTest.php diff --git a/tests/Doctrine/Tests/ORM/PersistentCollectionTest.php b/tests/Tests/ORM/PersistentCollectionTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/PersistentCollectionTest.php rename to tests/Tests/ORM/PersistentCollectionTest.php diff --git a/tests/Doctrine/Tests/ORM/Persisters/BasicEntityPersisterCompositeTypeParametersTest.php b/tests/Tests/ORM/Persisters/BasicEntityPersisterCompositeTypeParametersTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Persisters/BasicEntityPersisterCompositeTypeParametersTest.php rename to tests/Tests/ORM/Persisters/BasicEntityPersisterCompositeTypeParametersTest.php diff --git a/tests/Doctrine/Tests/ORM/Persisters/BasicEntityPersisterCompositeTypeSqlTest.php b/tests/Tests/ORM/Persisters/BasicEntityPersisterCompositeTypeSqlTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Persisters/BasicEntityPersisterCompositeTypeSqlTest.php rename to tests/Tests/ORM/Persisters/BasicEntityPersisterCompositeTypeSqlTest.php diff --git a/tests/Doctrine/Tests/ORM/Persisters/BasicEntityPersisterTypeValueSqlTest.php b/tests/Tests/ORM/Persisters/BasicEntityPersisterTypeValueSqlTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Persisters/BasicEntityPersisterTypeValueSqlTest.php rename to tests/Tests/ORM/Persisters/BasicEntityPersisterTypeValueSqlTest.php diff --git a/tests/Doctrine/Tests/ORM/Persisters/Exception/UnrecognizedFieldTest.php b/tests/Tests/ORM/Persisters/Exception/UnrecognizedFieldTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Persisters/Exception/UnrecognizedFieldTest.php rename to tests/Tests/ORM/Persisters/Exception/UnrecognizedFieldTest.php diff --git a/tests/Doctrine/Tests/ORM/Persisters/ManyToManyPersisterTest.php b/tests/Tests/ORM/Persisters/ManyToManyPersisterTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Persisters/ManyToManyPersisterTest.php rename to tests/Tests/ORM/Persisters/ManyToManyPersisterTest.php diff --git a/tests/Doctrine/Tests/ORM/Proxy/ProxyFactoryTest.php b/tests/Tests/ORM/Proxy/ProxyFactoryTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Proxy/ProxyFactoryTest.php rename to tests/Tests/ORM/Proxy/ProxyFactoryTest.php diff --git a/tests/Doctrine/Tests/ORM/Query/CustomTreeWalkersJoinTest.php b/tests/Tests/ORM/Query/CustomTreeWalkersJoinTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Query/CustomTreeWalkersJoinTest.php rename to tests/Tests/ORM/Query/CustomTreeWalkersJoinTest.php diff --git a/tests/Doctrine/Tests/ORM/Query/CustomTreeWalkersTest.php b/tests/Tests/ORM/Query/CustomTreeWalkersTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Query/CustomTreeWalkersTest.php rename to tests/Tests/ORM/Query/CustomTreeWalkersTest.php diff --git a/tests/Doctrine/Tests/ORM/Query/DeleteSqlGenerationTest.php b/tests/Tests/ORM/Query/DeleteSqlGenerationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Query/DeleteSqlGenerationTest.php rename to tests/Tests/ORM/Query/DeleteSqlGenerationTest.php diff --git a/tests/Doctrine/Tests/ORM/Query/ExprTest.php b/tests/Tests/ORM/Query/ExprTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Query/ExprTest.php rename to tests/Tests/ORM/Query/ExprTest.php diff --git a/tests/Doctrine/Tests/ORM/Query/FilterCollectionTest.php b/tests/Tests/ORM/Query/FilterCollectionTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Query/FilterCollectionTest.php rename to tests/Tests/ORM/Query/FilterCollectionTest.php diff --git a/tests/Doctrine/Tests/ORM/Query/LanguageRecognitionTest.php b/tests/Tests/ORM/Query/LanguageRecognitionTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Query/LanguageRecognitionTest.php rename to tests/Tests/ORM/Query/LanguageRecognitionTest.php diff --git a/tests/Doctrine/Tests/ORM/Query/LexerTest.php b/tests/Tests/ORM/Query/LexerTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Query/LexerTest.php rename to tests/Tests/ORM/Query/LexerTest.php diff --git a/tests/Doctrine/Tests/ORM/Query/ParameterTypeInfererTest.php b/tests/Tests/ORM/Query/ParameterTypeInfererTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Query/ParameterTypeInfererTest.php rename to tests/Tests/ORM/Query/ParameterTypeInfererTest.php diff --git a/tests/Doctrine/Tests/ORM/Query/ParserResultTest.php b/tests/Tests/ORM/Query/ParserResultTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Query/ParserResultTest.php rename to tests/Tests/ORM/Query/ParserResultTest.php diff --git a/tests/Doctrine/Tests/ORM/Query/ParserTest.php b/tests/Tests/ORM/Query/ParserTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Query/ParserTest.php rename to tests/Tests/ORM/Query/ParserTest.php diff --git a/tests/Doctrine/Tests/ORM/Query/QueryExpressionVisitorTest.php b/tests/Tests/ORM/Query/QueryExpressionVisitorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Query/QueryExpressionVisitorTest.php rename to tests/Tests/ORM/Query/QueryExpressionVisitorTest.php diff --git a/tests/Doctrine/Tests/ORM/Query/QueryTest.php b/tests/Tests/ORM/Query/QueryTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Query/QueryTest.php rename to tests/Tests/ORM/Query/QueryTest.php diff --git a/tests/Doctrine/Tests/ORM/Query/SelectSqlGenerationTest.php b/tests/Tests/ORM/Query/SelectSqlGenerationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Query/SelectSqlGenerationTest.php rename to tests/Tests/ORM/Query/SelectSqlGenerationTest.php diff --git a/tests/Doctrine/Tests/ORM/Query/SqlExpressionVisitorTest.php b/tests/Tests/ORM/Query/SqlExpressionVisitorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Query/SqlExpressionVisitorTest.php rename to tests/Tests/ORM/Query/SqlExpressionVisitorTest.php diff --git a/tests/Doctrine/Tests/ORM/Query/SqlWalkerTest.php b/tests/Tests/ORM/Query/SqlWalkerTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Query/SqlWalkerTest.php rename to tests/Tests/ORM/Query/SqlWalkerTest.php diff --git a/tests/Doctrine/Tests/ORM/Query/UpdateSqlGenerationTest.php b/tests/Tests/ORM/Query/UpdateSqlGenerationTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Query/UpdateSqlGenerationTest.php rename to tests/Tests/ORM/Query/UpdateSqlGenerationTest.php diff --git a/tests/Doctrine/Tests/ORM/QueryBuilderTest.php b/tests/Tests/ORM/QueryBuilderTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/QueryBuilderTest.php rename to tests/Tests/ORM/QueryBuilderTest.php diff --git a/tests/Doctrine/Tests/ORM/Repository/DefaultRepositoryFactoryTest.php b/tests/Tests/ORM/Repository/DefaultRepositoryFactoryTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Repository/DefaultRepositoryFactoryTest.php rename to tests/Tests/ORM/Repository/DefaultRepositoryFactoryTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/AttachEntityListenersListenerTest.php b/tests/Tests/ORM/Tools/AttachEntityListenersListenerTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/AttachEntityListenersListenerTest.php rename to tests/Tests/ORM/Tools/AttachEntityListenersListenerTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Console/Command/ClearCacheCollectionRegionCommandTest.php b/tests/Tests/ORM/Tools/Console/Command/ClearCacheCollectionRegionCommandTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Console/Command/ClearCacheCollectionRegionCommandTest.php rename to tests/Tests/ORM/Tools/Console/Command/ClearCacheCollectionRegionCommandTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Console/Command/ClearCacheEntityRegionCommandTest.php b/tests/Tests/ORM/Tools/Console/Command/ClearCacheEntityRegionCommandTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Console/Command/ClearCacheEntityRegionCommandTest.php rename to tests/Tests/ORM/Tools/Console/Command/ClearCacheEntityRegionCommandTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Console/Command/ClearCacheQueryRegionCommandTest.php b/tests/Tests/ORM/Tools/Console/Command/ClearCacheQueryRegionCommandTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Console/Command/ClearCacheQueryRegionCommandTest.php rename to tests/Tests/ORM/Tools/Console/Command/ClearCacheQueryRegionCommandTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Console/Command/InfoCommandTest.php b/tests/Tests/ORM/Tools/Console/Command/InfoCommandTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Console/Command/InfoCommandTest.php rename to tests/Tests/ORM/Tools/Console/Command/InfoCommandTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Console/Command/MappingDescribeCommandTest.php b/tests/Tests/ORM/Tools/Console/Command/MappingDescribeCommandTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Console/Command/MappingDescribeCommandTest.php rename to tests/Tests/ORM/Tools/Console/Command/MappingDescribeCommandTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Console/Command/RunDqlCommandTest.php b/tests/Tests/ORM/Tools/Console/Command/RunDqlCommandTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Console/Command/RunDqlCommandTest.php rename to tests/Tests/ORM/Tools/Console/Command/RunDqlCommandTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Console/Command/SchemaTool/CommandTestCase.php b/tests/Tests/ORM/Tools/Console/Command/SchemaTool/CommandTestCase.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Console/Command/SchemaTool/CommandTestCase.php rename to tests/Tests/ORM/Tools/Console/Command/SchemaTool/CommandTestCase.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Console/Command/SchemaTool/CreateCommandTest.php b/tests/Tests/ORM/Tools/Console/Command/SchemaTool/CreateCommandTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Console/Command/SchemaTool/CreateCommandTest.php rename to tests/Tests/ORM/Tools/Console/Command/SchemaTool/CreateCommandTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Console/Command/SchemaTool/DropCommandTest.php b/tests/Tests/ORM/Tools/Console/Command/SchemaTool/DropCommandTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Console/Command/SchemaTool/DropCommandTest.php rename to tests/Tests/ORM/Tools/Console/Command/SchemaTool/DropCommandTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Console/Command/SchemaTool/Models/Keyboard.php b/tests/Tests/ORM/Tools/Console/Command/SchemaTool/Models/Keyboard.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Console/Command/SchemaTool/Models/Keyboard.php rename to tests/Tests/ORM/Tools/Console/Command/SchemaTool/Models/Keyboard.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Console/Command/ValidateSchemaCommandTest.php b/tests/Tests/ORM/Tools/Console/Command/ValidateSchemaCommandTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Console/Command/ValidateSchemaCommandTest.php rename to tests/Tests/ORM/Tools/Console/Command/ValidateSchemaCommandTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Console/ConsoleRunnerTest.php b/tests/Tests/ORM/Tools/Console/ConsoleRunnerTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Console/ConsoleRunnerTest.php rename to tests/Tests/ORM/Tools/Console/ConsoleRunnerTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Console/MetadataFilterTest.php b/tests/Tests/ORM/Tools/Console/MetadataFilterTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Console/MetadataFilterTest.php rename to tests/Tests/ORM/Tools/Console/MetadataFilterTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/DebugTest.php b/tests/Tests/ORM/Tools/DebugTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/DebugTest.php rename to tests/Tests/ORM/Tools/DebugTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Pagination/CountOutputWalkerTest.php b/tests/Tests/ORM/Tools/Pagination/CountOutputWalkerTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Pagination/CountOutputWalkerTest.php rename to tests/Tests/ORM/Tools/Pagination/CountOutputWalkerTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Pagination/CountWalkerTest.php b/tests/Tests/ORM/Tools/Pagination/CountWalkerTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Pagination/CountWalkerTest.php rename to tests/Tests/ORM/Tools/Pagination/CountWalkerTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Pagination/LimitSubqueryOutputWalkerTest.php b/tests/Tests/ORM/Tools/Pagination/LimitSubqueryOutputWalkerTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Pagination/LimitSubqueryOutputWalkerTest.php rename to tests/Tests/ORM/Tools/Pagination/LimitSubqueryOutputWalkerTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Pagination/LimitSubqueryWalkerTest.php b/tests/Tests/ORM/Tools/Pagination/LimitSubqueryWalkerTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Pagination/LimitSubqueryWalkerTest.php rename to tests/Tests/ORM/Tools/Pagination/LimitSubqueryWalkerTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Pagination/PaginationTestCase.php b/tests/Tests/ORM/Tools/Pagination/PaginationTestCase.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Pagination/PaginationTestCase.php rename to tests/Tests/ORM/Tools/Pagination/PaginationTestCase.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Pagination/PaginatorTest.php b/tests/Tests/ORM/Tools/Pagination/PaginatorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Pagination/PaginatorTest.php rename to tests/Tests/ORM/Tools/Pagination/PaginatorTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Pagination/RootTypeWalkerTest.php b/tests/Tests/ORM/Tools/Pagination/RootTypeWalkerTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Pagination/RootTypeWalkerTest.php rename to tests/Tests/ORM/Tools/Pagination/RootTypeWalkerTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/Pagination/WhereInWalkerTest.php b/tests/Tests/ORM/Tools/Pagination/WhereInWalkerTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/Pagination/WhereInWalkerTest.php rename to tests/Tests/ORM/Tools/Pagination/WhereInWalkerTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/ResolveTargetEntityListenerTest.php b/tests/Tests/ORM/Tools/ResolveTargetEntityListenerTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/ResolveTargetEntityListenerTest.php rename to tests/Tests/ORM/Tools/ResolveTargetEntityListenerTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/SchemaToolTest.php b/tests/Tests/ORM/Tools/SchemaToolTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/SchemaToolTest.php rename to tests/Tests/ORM/Tools/SchemaToolTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/SchemaValidatorTest.php b/tests/Tests/ORM/Tools/SchemaValidatorTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/SchemaValidatorTest.php rename to tests/Tests/ORM/Tools/SchemaValidatorTest.php diff --git a/tests/Doctrine/Tests/ORM/Tools/TestAsset/ChildClass.php b/tests/Tests/ORM/Tools/TestAsset/ChildClass.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/TestAsset/ChildClass.php rename to tests/Tests/ORM/Tools/TestAsset/ChildClass.php diff --git a/tests/Doctrine/Tests/ORM/Tools/TestAsset/ChildWithSameAttributesClass.php b/tests/Tests/ORM/Tools/TestAsset/ChildWithSameAttributesClass.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/TestAsset/ChildWithSameAttributesClass.php rename to tests/Tests/ORM/Tools/TestAsset/ChildWithSameAttributesClass.php diff --git a/tests/Doctrine/Tests/ORM/Tools/TestAsset/ParentClass.php b/tests/Tests/ORM/Tools/TestAsset/ParentClass.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Tools/TestAsset/ParentClass.php rename to tests/Tests/ORM/Tools/TestAsset/ParentClass.php diff --git a/tests/Doctrine/Tests/ORM/UnitOfWorkTest.php b/tests/Tests/ORM/UnitOfWorkTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/UnitOfWorkTest.php rename to tests/Tests/ORM/UnitOfWorkTest.php diff --git a/tests/Doctrine/Tests/ORM/Utility/HierarchyDiscriminatorResolverTest.php b/tests/Tests/ORM/Utility/HierarchyDiscriminatorResolverTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Utility/HierarchyDiscriminatorResolverTest.php rename to tests/Tests/ORM/Utility/HierarchyDiscriminatorResolverTest.php diff --git a/tests/Doctrine/Tests/ORM/Utility/IdentifierFlattenerEnumIdTest.php b/tests/Tests/ORM/Utility/IdentifierFlattenerEnumIdTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Utility/IdentifierFlattenerEnumIdTest.php rename to tests/Tests/ORM/Utility/IdentifierFlattenerEnumIdTest.php diff --git a/tests/Doctrine/Tests/ORM/Utility/IdentifierFlattenerTest.php b/tests/Tests/ORM/Utility/IdentifierFlattenerTest.php similarity index 100% rename from tests/Doctrine/Tests/ORM/Utility/IdentifierFlattenerTest.php rename to tests/Tests/ORM/Utility/IdentifierFlattenerTest.php diff --git a/tests/Doctrine/Tests/OrmFunctionalTestCase.php b/tests/Tests/OrmFunctionalTestCase.php similarity index 100% rename from tests/Doctrine/Tests/OrmFunctionalTestCase.php rename to tests/Tests/OrmFunctionalTestCase.php diff --git a/tests/Doctrine/Tests/OrmTestCase.php b/tests/Tests/OrmTestCase.php similarity index 100% rename from tests/Doctrine/Tests/OrmTestCase.php rename to tests/Tests/OrmTestCase.php diff --git a/tests/Doctrine/Tests/Proxy/AutoloaderTest.php b/tests/Tests/Proxy/AutoloaderTest.php similarity index 100% rename from tests/Doctrine/Tests/Proxy/AutoloaderTest.php rename to tests/Tests/Proxy/AutoloaderTest.php diff --git a/tests/Doctrine/Tests/TestInit.php b/tests/Tests/TestInit.php similarity index 79% rename from tests/Doctrine/Tests/TestInit.php rename to tests/Tests/TestInit.php index 2cfe1761b0d..eb2db606747 100644 --- a/tests/Doctrine/Tests/TestInit.php +++ b/tests/Tests/TestInit.php @@ -21,12 +21,12 @@ error_reporting(E_ALL | E_STRICT); date_default_timezone_set('UTC'); -if (file_exists(__DIR__ . '/../../../vendor/autoload.php')) { +if (file_exists(__DIR__ . '/../../vendor/autoload.php')) { // dependencies were installed via composer - this is the main project - require __DIR__ . '/../../../vendor/autoload.php'; -} elseif (file_exists(__DIR__ . '/../../../../../autoload.php')) { + require __DIR__ . '/../../vendor/autoload.php'; +} elseif (file_exists(__DIR__ . '/../../../../autoload.php')) { // installed as a dependency in `vendor` - require __DIR__ . '/../../../../../autoload.php'; + require __DIR__ . '/../../../../autoload.php'; } else { throw new Exception('Can\'t find autoload.php. Did you install dependencies via composer?'); } diff --git a/tests/Doctrine/Tests/TestUtil.php b/tests/Tests/TestUtil.php similarity index 100% rename from tests/Doctrine/Tests/TestUtil.php rename to tests/Tests/TestUtil.php