@@ -36,37 +36,37 @@ |
||
| 36 | 36 | $dql = "SELECT u FROM Doctrine\Tests\Models\Cms\CmsUser u"; |
| 37 | 37 | |
| 38 | 38 | $users = $this->em->createQuery($dql) |
| 39 | - ->setHydrationCacheProfile(new QueryCacheProfile(null, null, $cache)) |
|
| 40 | - ->getResult(); |
|
| 39 | + ->setHydrationCacheProfile(new QueryCacheProfile(null, null, $cache)) |
|
| 40 | + ->getResult(); |
|
| 41 | 41 | |
| 42 | 42 | $c = $this->getCurrentQueryCount(); |
| 43 | 43 | $users = $this->em->createQuery($dql) |
| 44 | - ->setHydrationCacheProfile(new QueryCacheProfile(null, null, $cache)) |
|
| 45 | - ->getResult(); |
|
| 44 | + ->setHydrationCacheProfile(new QueryCacheProfile(null, null, $cache)) |
|
| 45 | + ->getResult(); |
|
| 46 | 46 | |
| 47 | 47 | self::assertEquals($c, $this->getCurrentQueryCount(), "Should not execute query. Its cached!"); |
| 48 | 48 | |
| 49 | 49 | $users = $this->em->createQuery($dql) |
| 50 | - ->setHydrationCacheProfile(new QueryCacheProfile(null, null, $cache)) |
|
| 51 | - ->getArrayResult(); |
|
| 50 | + ->setHydrationCacheProfile(new QueryCacheProfile(null, null, $cache)) |
|
| 51 | + ->getArrayResult(); |
|
| 52 | 52 | |
| 53 | 53 | self::assertEquals($c + 1, $this->getCurrentQueryCount(), "Hydration is part of cache key."); |
| 54 | 54 | |
| 55 | 55 | $users = $this->em->createQuery($dql) |
| 56 | - ->setHydrationCacheProfile(new QueryCacheProfile(null, null, $cache)) |
|
| 57 | - ->getArrayResult(); |
|
| 56 | + ->setHydrationCacheProfile(new QueryCacheProfile(null, null, $cache)) |
|
| 57 | + ->getArrayResult(); |
|
| 58 | 58 | |
| 59 | 59 | self::assertEquals($c + 1, $this->getCurrentQueryCount(), "Hydration now cached"); |
| 60 | 60 | |
| 61 | 61 | $users = $this->em->createQuery($dql) |
| 62 | - ->setHydrationCacheProfile(new QueryCacheProfile(null, 'cachekey', $cache)) |
|
| 63 | - ->getArrayResult(); |
|
| 62 | + ->setHydrationCacheProfile(new QueryCacheProfile(null, 'cachekey', $cache)) |
|
| 63 | + ->getArrayResult(); |
|
| 64 | 64 | |
| 65 | 65 | self::assertTrue($cache->contains('cachekey'), 'Explicit cache key'); |
| 66 | 66 | |
| 67 | 67 | $users = $this->em->createQuery($dql) |
| 68 | - ->setHydrationCacheProfile(new QueryCacheProfile(null, 'cachekey', $cache)) |
|
| 69 | - ->getArrayResult(); |
|
| 68 | + ->setHydrationCacheProfile(new QueryCacheProfile(null, 'cachekey', $cache)) |
|
| 69 | + ->getArrayResult(); |
|
| 70 | 70 | self::assertEquals($c + 2, $this->getCurrentQueryCount(), "Hydration now cached"); |
| 71 | 71 | } |
| 72 | 72 | |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\Tests\ORM\Functional; |
| 6 | 6 | |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\Tests\ORM\Functional\Locking; |
| 6 | 6 | |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | $test = new OptimisticStandard(); |
| 119 | 119 | |
| 120 | 120 | for ($i = 0; $i < 5; $i++) { |
| 121 | - $test->name = 'test' . $i; |
|
| 121 | + $test->name = 'test'.$i; |
|
| 122 | 122 | |
| 123 | 123 | $this->em->persist($test); |
| 124 | 124 | $this->em->flush(); |
@@ -252,7 +252,7 @@ discard block |
||
| 252 | 252 | $caughtException = null; |
| 253 | 253 | |
| 254 | 254 | try { |
| 255 | - $expectedVersionExpired = DateTime::createFromFormat('U', (string) ($test->version->getTimestamp()-3600)); |
|
| 255 | + $expectedVersionExpired = DateTime::createFromFormat('U', (string) ($test->version->getTimestamp() - 3600)); |
|
| 256 | 256 | |
| 257 | 257 | $this->em->lock($test, LockMode::OPTIMISTIC, $expectedVersionExpired); |
| 258 | 258 | } catch (OptimisticLockException $e) { |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\Tests\ORM\Functional\Locking; |
| 6 | 6 | |
@@ -26,9 +26,9 @@ discard block |
||
| 26 | 26 | $worker->addFunction("dqlWithLock", [$lockAgent, "dqlWithLock"]); |
| 27 | 27 | $worker->addFunction('lock', [$lockAgent, 'lock']); |
| 28 | 28 | |
| 29 | - while($worker->work()) { |
|
| 29 | + while ($worker->work()) { |
|
| 30 | 30 | if ($worker->returnCode() != GEARMAN_SUCCESS) { |
| 31 | - echo "return_code: " . $worker->returnCode() . "\n"; |
|
| 31 | + echo "return_code: ".$worker->returnCode()."\n"; |
|
| 32 | 32 | break; |
| 33 | 33 | } |
| 34 | 34 | } |
@@ -79,18 +79,18 @@ discard block |
||
| 79 | 79 | |
| 80 | 80 | protected function processWorkload($job) |
| 81 | 81 | { |
| 82 | - echo "Received job: " . $job->handle() . " for function " . $job->functionName() . "\n"; |
|
| 82 | + echo "Received job: ".$job->handle()." for function ".$job->functionName()."\n"; |
|
| 83 | 83 | |
| 84 | 84 | $workload = $job->workload(); |
| 85 | 85 | $workload = unserialize($workload); |
| 86 | 86 | |
| 87 | - if (!isset($workload['conn']) || !is_array($workload['conn'])) { |
|
| 87 | + if ( ! isset($workload['conn']) || ! is_array($workload['conn'])) { |
|
| 88 | 88 | throw new \InvalidArgumentException("Missing Database parameters"); |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | $this->em = $this->createEntityManager($workload['conn']); |
| 92 | 92 | |
| 93 | - if (!isset($workload['fixture'])) { |
|
| 93 | + if ( ! isset($workload['fixture'])) { |
|
| 94 | 94 | throw new \InvalidArgumentException("Missing Fixture parameters"); |
| 95 | 95 | } |
| 96 | 96 | return $workload['fixture']; |
@@ -99,11 +99,11 @@ discard block |
||
| 99 | 99 | protected function createEntityManager($conn) |
| 100 | 100 | { |
| 101 | 101 | $config = new Configuration(); |
| 102 | - $config->setProxyDir(__DIR__ . '/../../../Proxies'); |
|
| 102 | + $config->setProxyDir(__DIR__.'/../../../Proxies'); |
|
| 103 | 103 | $config->setProxyNamespace('MyProject\Proxies'); |
| 104 | 104 | $config->setAutoGenerateProxyClasses(true); |
| 105 | 105 | |
| 106 | - $annotDriver = $config->newDefaultAnnotationDriver([__DIR__ . '/../../../Models/']); |
|
| 106 | + $annotDriver = $config->newDefaultAnnotationDriver([__DIR__.'/../../../Models/']); |
|
| 107 | 107 | $config->setMetadataDriverImpl($annotDriver); |
| 108 | 108 | |
| 109 | 109 | $cache = new ArrayCache(); |
@@ -212,7 +212,7 @@ |
||
| 212 | 212 | $this->expectExceptionMessage('The optimistic lock on an entity failed.'); |
| 213 | 213 | |
| 214 | 214 | $this->em->createQuery($dql) |
| 215 | - ->setHint(Query::HINT_LOCK_MODE, LockMode::OPTIMISTIC) |
|
| 216 | - ->getSQL(); |
|
| 215 | + ->setHint(Query::HINT_LOCK_MODE, LockMode::OPTIMISTIC) |
|
| 216 | + ->getSQL(); |
|
| 217 | 217 | } |
| 218 | 218 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\Tests\ORM\Functional\Locking; |
| 6 | 6 | |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | $article = new CmsArticle(); |
| 90 | 90 | |
| 91 | 91 | $this->expectException(\InvalidArgumentException::class); |
| 92 | - $this->expectExceptionMessage('Entity ' . CmsArticle::class); |
|
| 92 | + $this->expectExceptionMessage('Entity '.CmsArticle::class); |
|
| 93 | 93 | |
| 94 | 94 | $this->em->lock($article, LockMode::OPTIMISTIC, $article->version + 1); |
| 95 | 95 | } |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | { |
| 139 | 139 | $writeLockSql = $this->em->getConnection()->getDatabasePlatform()->getWriteLockSQL(); |
| 140 | 140 | |
| 141 | - if (! $writeLockSql) { |
|
| 141 | + if ( ! $writeLockSql) { |
|
| 142 | 142 | $this->markTestSkipped('Database Driver has no Write Lock support.'); |
| 143 | 143 | } |
| 144 | 144 | |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | { |
| 174 | 174 | $readLockSql = $this->em->getConnection()->getDatabasePlatform()->getReadLockSQL(); |
| 175 | 175 | |
| 176 | - if (! $readLockSql) { |
|
| 176 | + if ( ! $readLockSql) { |
|
| 177 | 177 | $this->markTestSkipped('Database Driver has no Write Lock support.'); |
| 178 | 178 | } |
| 179 | 179 | |
@@ -206,7 +206,7 @@ discard block |
||
| 206 | 206 | */ |
| 207 | 207 | public function testLockOptimisticNonVersionedThrowsExceptionInDQL() |
| 208 | 208 | { |
| 209 | - $dql = "SELECT u FROM " . CmsUser::class . " u WHERE u.username = 'gblanco'"; |
|
| 209 | + $dql = "SELECT u FROM ".CmsUser::class." u WHERE u.username = 'gblanco'"; |
|
| 210 | 210 | |
| 211 | 211 | $this->expectException(OptimisticLockException::class); |
| 212 | 212 | $this->expectExceptionMessage('The optimistic lock on an entity failed.'); |
@@ -224,13 +224,13 @@ |
||
| 224 | 224 | |
| 225 | 225 | $q = $this->em->createNativeQuery('SELECT id, name, status, phonenumber FROM cms_users INNER JOIN cms_phonenumbers ON id = user_id WHERE username = ?', $rsm); |
| 226 | 226 | $q2 = $q->setSQL('foo') |
| 227 | - ->setResultSetMapping($rsm) |
|
| 228 | - ->expireResultCache(true) |
|
| 229 | - ->setHint('foo', 'bar') |
|
| 230 | - ->setParameter(1, 'foo') |
|
| 231 | - ->setParameters($parameters) |
|
| 232 | - ->setResultCacheDriver(null) |
|
| 233 | - ->setResultCacheLifetime(3500); |
|
| 227 | + ->setResultSetMapping($rsm) |
|
| 228 | + ->expireResultCache(true) |
|
| 229 | + ->setHint('foo', 'bar') |
|
| 230 | + ->setParameter(1, 'foo') |
|
| 231 | + ->setParameters($parameters) |
|
| 232 | + ->setResultCacheDriver(null) |
|
| 233 | + ->setResultCacheLifetime(3500); |
|
| 234 | 234 | |
| 235 | 235 | self::assertSame($q, $q2); |
| 236 | 236 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\Tests\ORM\Functional; |
| 6 | 6 | |
@@ -436,8 +436,8 @@ discard block |
||
| 436 | 436 | |
| 437 | 437 | self::assertCount(1, $result); |
| 438 | 438 | self::assertInstanceOf(CmsAddress::class, $result[0]); |
| 439 | - self::assertEquals($addr->id, $result[0]->id); |
|
| 440 | - self::assertEquals($addr->city, $result[0]->city); |
|
| 439 | + self::assertEquals($addr->id, $result[0]->id); |
|
| 440 | + self::assertEquals($addr->city, $result[0]->city); |
|
| 441 | 441 | self::assertEquals($addr->country, $result[0]->country); |
| 442 | 442 | } |
| 443 | 443 | |
@@ -454,7 +454,7 @@ discard block |
||
| 454 | 454 | |
| 455 | 455 | $email = new CmsEmail(); |
| 456 | 456 | |
| 457 | - $email->email = '[email protected]'; |
|
| 457 | + $email->email = '[email protected]'; |
|
| 458 | 458 | |
| 459 | 459 | $user->setEmail($email); |
| 460 | 460 | |
@@ -605,7 +605,7 @@ discard block |
||
| 605 | 605 | $repository = $this->em->getRepository(CmsUser::class); |
| 606 | 606 | $result = $repository |
| 607 | 607 | ->createNativeNamedQuery('fetchUserPhonenumberCount') |
| 608 | - ->setParameter(1, ['test','FabioBatSilva'])->getResult(); |
|
| 608 | + ->setParameter(1, ['test', 'FabioBatSilva'])->getResult(); |
|
| 609 | 609 | |
| 610 | 610 | self::assertEquals(2, count($result)); |
| 611 | 611 | self::assertTrue(is_array($result[0])); |
@@ -832,7 +832,7 @@ discard block |
||
| 832 | 832 | |
| 833 | 833 | $rsm->addRootEntityFromClassMetadata(CmsUser::class, 'u'); |
| 834 | 834 | |
| 835 | - self::assertSQLEquals('u.id AS id0, u.status AS status1, u.username AS username2, u.name AS name3, u.email_id AS email_id4', (string)$rsm); |
|
| 835 | + self::assertSQLEquals('u.id AS id0, u.status AS status1, u.username AS username2, u.name AS name3, u.email_id AS email_id4', (string) $rsm); |
|
| 836 | 836 | } |
| 837 | 837 | |
| 838 | 838 | /** |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\Tests\ORM\Functional; |
| 6 | 6 | |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | try { |
| 79 | 79 | // exception depending on the underlying Database Driver |
| 80 | 80 | $this->em->flush(); |
| 81 | - } catch(\Exception $e) { |
|
| 81 | + } catch (\Exception $e) { |
|
| 82 | 82 | $exceptionThrown = true; |
| 83 | 83 | } |
| 84 | 84 | |
@@ -363,9 +363,9 @@ discard block |
||
| 363 | 363 | self::assertEquals(2, count($user->phonenumbers)); |
| 364 | 364 | $dql = "SELECT u FROM Doctrine\Tests\Models\CMS\CmsUser u WHERE u.id = ?1"; |
| 365 | 365 | $user = $this->em->createQuery($dql) |
| 366 | - ->setParameter(1, $user->id) |
|
| 367 | - ->setHint(Query::HINT_REFRESH, true) |
|
| 368 | - ->getSingleResult(); |
|
| 366 | + ->setParameter(1, $user->id) |
|
| 367 | + ->setHint(Query::HINT_REFRESH, true) |
|
| 368 | + ->getSingleResult(); |
|
| 369 | 369 | |
| 370 | 370 | self::assertEquals(1, count($user->phonenumbers)); |
| 371 | 371 | } |
@@ -400,8 +400,8 @@ discard block |
||
| 400 | 400 | |
| 401 | 401 | $dql = "SELECT u FROM Doctrine\Tests\Models\CMS\CmsUser u WHERE u.id = ?1"; |
| 402 | 402 | $user = $this->em->createQuery($dql) |
| 403 | - ->setParameter(1, $userId) |
|
| 404 | - ->getSingleResult(); |
|
| 403 | + ->setParameter(1, $userId) |
|
| 404 | + ->getSingleResult(); |
|
| 405 | 405 | |
| 406 | 406 | self::assertEquals(1, count($user->phonenumbers)); |
| 407 | 407 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\Tests\ORM\Functional; |
| 6 | 6 | |
@@ -183,7 +183,7 @@ discard block |
||
| 183 | 183 | $user->username = 'gblanco'; |
| 184 | 184 | $user->status = 'developer'; |
| 185 | 185 | |
| 186 | - for ($i=0; $i<3; ++$i) { |
|
| 186 | + for ($i = 0; $i < 3; ++$i) { |
|
| 187 | 187 | $phone = new CmsPhonenumber; |
| 188 | 188 | $phone->phonenumber = 100 + $i; |
| 189 | 189 | $user->addPhonenumber($phone); |
@@ -411,7 +411,7 @@ discard block |
||
| 411 | 411 | $user->username = 'gblanco'; |
| 412 | 412 | $user->status = 'developer'; |
| 413 | 413 | |
| 414 | - for ($i=0; $i<3; ++$i) { |
|
| 414 | + for ($i = 0; $i < 3; ++$i) { |
|
| 415 | 415 | $phone = new CmsPhonenumber; |
| 416 | 416 | $phone->phonenumber = 100 + $i; |
| 417 | 417 | $user->addPhonenumber($phone); |
@@ -451,7 +451,7 @@ discard block |
||
| 451 | 451 | $user->username = 'gblanco'; |
| 452 | 452 | $user->status = 'developer'; |
| 453 | 453 | |
| 454 | - for ($i=0; $i<3; ++$i) { |
|
| 454 | + for ($i = 0; $i < 3; ++$i) { |
|
| 455 | 455 | $phone = new CmsPhonenumber; |
| 456 | 456 | $phone->phonenumber = 100 + $i; |
| 457 | 457 | $user->addPhonenumber($phone); |
@@ -492,7 +492,7 @@ discard block |
||
| 492 | 492 | $user->username = 'gblanco'; |
| 493 | 493 | $user->status = 'developer'; |
| 494 | 494 | |
| 495 | - for ($i=0; $i<3; ++$i) { |
|
| 495 | + for ($i = 0; $i < 3; ++$i) { |
|
| 496 | 496 | $phone = new CmsPhonenumber; |
| 497 | 497 | $phone->phonenumber = 100 + $i; |
| 498 | 498 | $user->addPhonenumber($phone); |
@@ -875,7 +875,7 @@ discard block |
||
| 875 | 875 | |
| 876 | 876 | self::assertInstanceOf(GhostObjectInterface::class, $fetchedUser, "It IS a proxy, ..."); |
| 877 | 877 | self::assertTrue($fetchedUser->isProxyInitialized(), "...but its initialized!"); |
| 878 | - self::assertEquals($qc+2, $this->getCurrentQueryCount()); |
|
| 878 | + self::assertEquals($qc + 2, $this->getCurrentQueryCount()); |
|
| 879 | 879 | } |
| 880 | 880 | |
| 881 | 881 | /** |
@@ -936,7 +936,7 @@ discard block |
||
| 936 | 936 | |
| 937 | 937 | $this->expectException(ORMInvalidArgumentException::class); |
| 938 | 938 | $this->expectExceptionMessage( |
| 939 | - 'Expected value of type "Doctrine\Tests\Models\CMS\CmsAddress" for association field ' . |
|
| 939 | + 'Expected value of type "Doctrine\Tests\Models\CMS\CmsAddress" for association field '. |
|
| 940 | 940 | '"Doctrine\Tests\Models\CMS\CmsUser#$address", got "Doctrine\Tests\Models\CMS\CmsUser" instead.' |
| 941 | 941 | ); |
| 942 | 942 | |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\Tests\ORM\Functional; |
| 6 | 6 | |
@@ -333,19 +333,19 @@ discard block |
||
| 333 | 333 | |
| 334 | 334 | $repos = $this->em->getRepository(CompanyContract::class); |
| 335 | 335 | $contracts = $repos->findBy(['salesPerson' => $this->salesPerson->getId()]); |
| 336 | - self::assertEquals(3, count($contracts), "There should be 3 entities related to " . $this->salesPerson->getId() . " for 'Doctrine\Tests\Models\Company\CompanyContract'"); |
|
| 336 | + self::assertEquals(3, count($contracts), "There should be 3 entities related to ".$this->salesPerson->getId()." for 'Doctrine\Tests\Models\Company\CompanyContract'"); |
|
| 337 | 337 | |
| 338 | 338 | $repos = $this->em->getRepository(CompanyFixContract::class); |
| 339 | 339 | $contracts = $repos->findBy(['salesPerson' => $this->salesPerson->getId()]); |
| 340 | - self::assertEquals(1, count($contracts), "There should be 1 entities related to " . $this->salesPerson->getId() . " for 'Doctrine\Tests\Models\Company\CompanyFixContract'"); |
|
| 340 | + self::assertEquals(1, count($contracts), "There should be 1 entities related to ".$this->salesPerson->getId()." for 'Doctrine\Tests\Models\Company\CompanyFixContract'"); |
|
| 341 | 341 | |
| 342 | 342 | $repos = $this->em->getRepository(CompanyFlexContract::class); |
| 343 | 343 | $contracts = $repos->findBy(['salesPerson' => $this->salesPerson->getId()]); |
| 344 | - self::assertEquals(2, count($contracts), "There should be 2 entities related to " . $this->salesPerson->getId() . " for 'Doctrine\Tests\Models\Company\CompanyFlexContract'"); |
|
| 344 | + self::assertEquals(2, count($contracts), "There should be 2 entities related to ".$this->salesPerson->getId()." for 'Doctrine\Tests\Models\Company\CompanyFlexContract'"); |
|
| 345 | 345 | |
| 346 | 346 | $repos = $this->em->getRepository(CompanyFlexUltraContract::class); |
| 347 | 347 | $contracts = $repos->findBy(['salesPerson' => $this->salesPerson->getId()]); |
| 348 | - self::assertEquals(1, count($contracts), "There should be 1 entities related to " . $this->salesPerson->getId() . " for 'Doctrine\Tests\Models\Company\CompanyFlexUltraContract'"); |
|
| 348 | + self::assertEquals(1, count($contracts), "There should be 1 entities related to ".$this->salesPerson->getId()." for 'Doctrine\Tests\Models\Company\CompanyFlexUltraContract'"); |
|
| 349 | 349 | } |
| 350 | 350 | |
| 351 | 351 | /** |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\Tests\ORM\Functional\Ticket; |
| 6 | 6 | |