@@ -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 | |
@@ -293,9 +293,9 @@ discard block |
||
293 | 293 | $user->username = 'gblanco'; |
294 | 294 | $user->status = 'developer'; |
295 | 295 | |
296 | - for ($i=0; $i < $groupCount; ++$i) { |
|
296 | + for ($i = 0; $i < $groupCount; ++$i) { |
|
297 | 297 | $group = new CmsGroup; |
298 | - $group->name = 'Developers_' . $i; |
|
298 | + $group->name = 'Developers_'.$i; |
|
299 | 299 | $user->addGroup($group); |
300 | 300 | } |
301 | 301 | |
@@ -418,7 +418,7 @@ discard block |
||
418 | 418 | $user |
419 | 419 | ->getGroups() |
420 | 420 | ->matching($criteria) |
421 | - ->map(function (CmsGroup $group) { |
|
421 | + ->map(function(CmsGroup $group) { |
|
422 | 422 | return $group->getName(); |
423 | 423 | }) |
424 | 424 | ->toArray() |
@@ -462,7 +462,7 @@ discard block |
||
462 | 462 | $user |
463 | 463 | ->getTags() |
464 | 464 | ->matching($criteria) |
465 | - ->map(function (CmsTag $tag) { |
|
465 | + ->map(function(CmsTag $tag) { |
|
466 | 466 | return $tag->getName(); |
467 | 467 | }) |
468 | 468 | ->toArray() |
@@ -268,8 +268,8 @@ |
||
268 | 268 | $this->em->clear(); |
269 | 269 | |
270 | 270 | $newUser = $this->em->createQuery('SELECT u, g FROM Doctrine\Tests\Models\CMS\CmsUser u LEFT JOIN u.groups g WHERE u.id = ?1') |
271 | - ->setParameter(1, $user->getId()) |
|
272 | - ->getSingleResult(); |
|
271 | + ->setParameter(1, $user->getId()) |
|
272 | + ->getSingleResult(); |
|
273 | 273 | self::assertCount(0, $newUser->groups); |
274 | 274 | self::assertInstanceOf(ManyToManyAssociationMetadata::class, $newUser->groups->getMapping()); |
275 | 275 |
@@ -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\ValueConversionType; |
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; |
6 | 6 | |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | use Doctrine\Tests\Models\CMS\CmsUser; |
14 | 14 | use Doctrine\Tests\OrmFunctionalTestCase; |
15 | 15 | |
16 | -require_once __DIR__ . '/../../TestInit.php'; |
|
16 | +require_once __DIR__.'/../../TestInit.php'; |
|
17 | 17 | |
18 | 18 | class CustomFunctionsTest extends OrmFunctionalTestCase |
19 | 19 | { |
@@ -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 | |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | |
52 | 52 | $this->em->clear(); |
53 | 53 | |
54 | - $result2 = $this->em->createQuery($dql) |
|
54 | + $result2 = $this->em->createQuery($dql) |
|
55 | 55 | ->setCacheable(true) |
56 | 56 | ->getResult(); |
57 | 57 | |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | |
255 | 255 | $this->em->clear(); |
256 | 256 | |
257 | - $result2 = $this->em->createQuery($dql) |
|
257 | + $result2 = $this->em->createQuery($dql) |
|
258 | 258 | ->setCacheable(true) |
259 | 259 | ->getResult(); |
260 | 260 | |
@@ -346,7 +346,7 @@ discard block |
||
346 | 346 | |
347 | 347 | $this->em->clear(); |
348 | 348 | |
349 | - $result2 = $this->em->createQuery($dql) |
|
349 | + $result2 = $this->em->createQuery($dql) |
|
350 | 350 | ->setCacheable(true) |
351 | 351 | ->getResult(); |
352 | 352 | |
@@ -394,7 +394,7 @@ discard block |
||
394 | 394 | |
395 | 395 | $this->em->clear(); |
396 | 396 | |
397 | - $result2 = $this->em->createQuery($dql)->setCacheable(true) |
|
397 | + $result2 = $this->em->createQuery($dql)->setCacheable(true) |
|
398 | 398 | ->setParameter('name', $name) |
399 | 399 | ->getResult(); |
400 | 400 | |
@@ -422,7 +422,7 @@ discard block |
||
422 | 422 | $result1 = $this->em->createQuery($dql)->setCacheable(true)->getResult(); |
423 | 423 | |
424 | 424 | self::assertCount(2, $result1); |
425 | - self::assertEquals($queryCount + 1 , $this->getCurrentQueryCount()); |
|
425 | + self::assertEquals($queryCount + 1, $this->getCurrentQueryCount()); |
|
426 | 426 | self::assertEquals($this->countries[0]->getId(), $result1[0]->getId()); |
427 | 427 | self::assertEquals($this->countries[1]->getId(), $result1[1]->getId()); |
428 | 428 | self::assertEquals($this->countries[0]->getName(), $result1[0]->getName()); |
@@ -438,11 +438,11 @@ discard block |
||
438 | 438 | |
439 | 439 | $this->em->clear(); |
440 | 440 | |
441 | - $result2 = $this->em->createQuery($dql) |
|
441 | + $result2 = $this->em->createQuery($dql) |
|
442 | 442 | ->setCacheable(true) |
443 | 443 | ->getResult(); |
444 | 444 | |
445 | - self::assertEquals($queryCount + 2 , $this->getCurrentQueryCount()); |
|
445 | + self::assertEquals($queryCount + 2, $this->getCurrentQueryCount()); |
|
446 | 446 | self::assertCount(2, $result2); |
447 | 447 | |
448 | 448 | self::assertEquals(5, $this->secondLevelCacheLogger->getPutCount()); |
@@ -459,7 +459,7 @@ discard block |
||
459 | 459 | self::assertEquals($result1[0]->getName(), $result2[0]->getName()); |
460 | 460 | self::assertEquals($result1[1]->getName(), $result2[1]->getName()); |
461 | 461 | |
462 | - self::assertEquals($queryCount + 2 , $this->getCurrentQueryCount()); |
|
462 | + self::assertEquals($queryCount + 2, $this->getCurrentQueryCount()); |
|
463 | 463 | } |
464 | 464 | |
465 | 465 | public function testBasicQueryFetchJoinsOneToMany() |
@@ -500,7 +500,7 @@ discard block |
||
500 | 500 | |
501 | 501 | $this->em->clear(); |
502 | 502 | |
503 | - $result2 = $this->em->createQuery($dql) |
|
503 | + $result2 = $this->em->createQuery($dql) |
|
504 | 504 | ->setCacheable(true) |
505 | 505 | ->getResult(); |
506 | 506 | |
@@ -566,7 +566,7 @@ discard block |
||
566 | 566 | $this->em->clear(); |
567 | 567 | $this->secondLevelCacheLogger->clearStats(); |
568 | 568 | |
569 | - $result2 = $this->em->createQuery($dql) |
|
569 | + $result2 = $this->em->createQuery($dql) |
|
570 | 570 | ->setCacheable(true) |
571 | 571 | ->getResult(); |
572 | 572 | |
@@ -626,7 +626,7 @@ discard block |
||
626 | 626 | |
627 | 627 | $this->cache->evictEntityRegion(State::class); |
628 | 628 | |
629 | - $result2 = $this->em->createQuery($dql) |
|
629 | + $result2 = $this->em->createQuery($dql) |
|
630 | 630 | ->setCacheable(true) |
631 | 631 | ->getResult(); |
632 | 632 | |
@@ -669,7 +669,7 @@ discard block |
||
669 | 669 | |
670 | 670 | $this->cache->evictEntityRegion(City::class); |
671 | 671 | |
672 | - $result2 = $this->em->createQuery($dql) |
|
672 | + $result2 = $this->em->createQuery($dql) |
|
673 | 673 | ->setCacheable(true) |
674 | 674 | ->getResult(); |
675 | 675 | |
@@ -720,7 +720,7 @@ discard block |
||
720 | 720 | |
721 | 721 | $this->em->clear(); |
722 | 722 | |
723 | - $result2 = $this->em->createNativeQuery($sql, $rsm) |
|
723 | + $result2 = $this->em->createNativeQuery($sql, $rsm) |
|
724 | 724 | ->setCacheable(true) |
725 | 725 | ->getResult(); |
726 | 726 | |
@@ -775,7 +775,7 @@ discard block |
||
775 | 775 | |
776 | 776 | $this->em->clear(); |
777 | 777 | |
778 | - $result2 = $this->em->createQuery($dql) |
|
778 | + $result2 = $this->em->createQuery($dql) |
|
779 | 779 | ->setCacheable(true) |
780 | 780 | ->setFirstResult(2) |
781 | 781 | ->setMaxResults(1) |
@@ -787,7 +787,7 @@ discard block |
||
787 | 787 | |
788 | 788 | $this->em->clear(); |
789 | 789 | |
790 | - $result3 = $this->em->createQuery($dql) |
|
790 | + $result3 = $this->em->createQuery($dql) |
|
791 | 791 | ->setCacheable(true) |
792 | 792 | ->getResult(); |
793 | 793 | |
@@ -804,7 +804,7 @@ discard block |
||
804 | 804 | $this->secondLevelCacheLogger->clearStats(); |
805 | 805 | $this->em->clear(); |
806 | 806 | |
807 | - $getHash = function(AbstractQuery $query){ |
|
807 | + $getHash = function(AbstractQuery $query) { |
|
808 | 808 | $method = new \ReflectionMethod($query, 'getHash'); |
809 | 809 | $method->setAccessible(true); |
810 | 810 | |
@@ -837,7 +837,7 @@ discard block |
||
837 | 837 | ->getRegion() |
838 | 838 | ->put($key, $entry); |
839 | 839 | |
840 | - $result2 = $this->em->createQuery($dql) |
|
840 | + $result2 = $this->em->createQuery($dql) |
|
841 | 841 | ->setCacheable(true) |
842 | 842 | ->setLifetime(3600) |
843 | 843 | ->getResult(); |
@@ -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 | |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | */ |
37 | 37 | private function registerType(string $className) |
38 | 38 | { |
39 | - $type = constant($className . '::NAME'); |
|
39 | + $type = constant($className.'::NAME'); |
|
40 | 40 | |
41 | 41 | if (DBALType::hasType($type)) { |
42 | 42 | DBALType::overrideType($type, $className); |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | foreach ($classes as $class) { |
73 | 73 | $ce = $validator->validateClass($class); |
74 | 74 | |
75 | - self::assertEmpty($ce, "Invalid Modelset: " . $modelSet . " class " . $class->getClassName() . ": ". implode("\n", $ce)); |
|
75 | + self::assertEmpty($ce, "Invalid Modelset: ".$modelSet." class ".$class->getClassName().": ".implode("\n", $ce)); |
|
76 | 76 | } |
77 | 77 | } |
78 | 78 | } |
@@ -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\Hydration; |
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\Hydration; |
6 | 6 | |
@@ -84,8 +84,8 @@ discard block |
||
84 | 84 | { |
85 | 85 | $rms = $this->rsm; |
86 | 86 | |
87 | - $this->rsm->addEntityResult(CmsUser::class,'u'); |
|
88 | - $this->rsm->addJoinedEntityResult(CmsPhonenumber::class,'p','u','phonenumbers'); |
|
87 | + $this->rsm->addEntityResult(CmsUser::class, 'u'); |
|
88 | + $this->rsm->addJoinedEntityResult(CmsPhonenumber::class, 'p', 'u', 'phonenumbers'); |
|
89 | 89 | $this->rsm->addFieldResult('u', 'id', 'id'); |
90 | 90 | $this->rsm->addFieldResult('u', 'name', 'name'); |
91 | 91 | $this->rsm->setDiscriminatorColumn('name', 'name'); |
@@ -278,8 +278,8 @@ discard block |
||
278 | 278 | { |
279 | 279 | $this->rsm->addEntityResult(LegacyUser::class, 'u'); |
280 | 280 | $this->rsm->addJoinedEntityResult(LegacyUserReference::class, 'lu', 'u', '_references'); |
281 | - $this->rsm->addMetaResult('lu', '_source', '_source', true, Type::getType('integer')); |
|
282 | - $this->rsm->addMetaResult('lu', '_target', '_target', true, Type::getType('integer')); |
|
281 | + $this->rsm->addMetaResult('lu', '_source', '_source', true, Type::getType('integer')); |
|
282 | + $this->rsm->addMetaResult('lu', '_target', '_target', true, Type::getType('integer')); |
|
283 | 283 | $this->rsm->addIndexBy('lu', '_source'); |
284 | 284 | |
285 | 285 | self::assertTrue($this->rsm->hasIndexBy('lu')); |
@@ -203,8 +203,8 @@ |
||
203 | 203 | } |
204 | 204 | |
205 | 205 | /** |
206 | - * @group DDC-1663 |
|
207 | - */ |
|
206 | + * @group DDC-1663 |
|
207 | + */ |
|
208 | 208 | public function testAddNamedNativeQueryResultSetMappingWithoutFields() |
209 | 209 | { |
210 | 210 | $cm = new ClassMetadata(CmsUser::class, $this->metadataBuildingContext); |
@@ -33,10 +33,10 @@ discard block |
||
33 | 33 | $rsm->setDiscriminatorColumn('p', 'discr'); |
34 | 34 | |
35 | 35 | $resultSet = [ |
36 | - [ |
|
37 | - 'u__id' => '1', |
|
38 | - 'u__name' => 'Fabio B. Silva' |
|
39 | - ], |
|
36 | + [ |
|
37 | + 'u__id' => '1', |
|
38 | + 'u__name' => 'Fabio B. Silva' |
|
39 | + ], |
|
40 | 40 | ]; |
41 | 41 | |
42 | 42 | $stmt = new HydratorMockStatement($resultSet); |
@@ -89,11 +89,11 @@ discard block |
||
89 | 89 | $rsm->setDiscriminatorColumn('p', 'discr'); |
90 | 90 | |
91 | 91 | $resultSet = [ |
92 | - [ |
|
93 | - 'p__id' => '1', |
|
94 | - 'p__name' => 'Fabio B. Silva', |
|
95 | - 'discr' => 'subworker' |
|
96 | - ], |
|
92 | + [ |
|
93 | + 'p__id' => '1', |
|
94 | + 'p__name' => 'Fabio B. Silva', |
|
95 | + 'discr' => 'subworker' |
|
96 | + ], |
|
97 | 97 | ]; |
98 | 98 | |
99 | 99 | $stmt = new HydratorMockStatement($resultSet); |
@@ -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\Hydration; |
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\Tools; |
6 | 6 | |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | public function setUp() |
35 | 35 | { |
36 | 36 | $this->namespace = uniqid('doctrine_'); |
37 | - $this->tmpDir = \sys_get_temp_dir() . DIRECTORY_SEPARATOR . $this->namespace; |
|
37 | + $this->tmpDir = \sys_get_temp_dir().DIRECTORY_SEPARATOR.$this->namespace; |
|
38 | 38 | \mkdir($this->tmpDir); |
39 | 39 | |
40 | 40 | $this->generator = new EntityGenerator(); |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | $em = $this->getTestEntityManager(); |
81 | 81 | $ns = $this->namespace; |
82 | 82 | |
83 | - $className = $ns . '\DDC3231User1Tmp'; |
|
83 | + $className = $ns.'\DDC3231User1Tmp'; |
|
84 | 84 | $this->writeEntityClass(DDC3231User1::class, $className); |
85 | 85 | |
86 | 86 | $rpath = $this->writeRepositoryClass($className); |
@@ -92,10 +92,10 @@ discard block |
||
92 | 92 | $repo = new \ReflectionClass($em->getRepository($className)); |
93 | 93 | |
94 | 94 | self::assertTrue($repo->inNamespace()); |
95 | - self::assertSame($className . 'Repository', $repo->getName()); |
|
95 | + self::assertSame($className.'Repository', $repo->getName()); |
|
96 | 96 | self::assertSame(EntityRepository::class, $repo->getParentClass()->getName()); |
97 | 97 | |
98 | - require_once __DIR__ . '/../../Models/DDC3231/DDC3231User1NoNamespace.php'; |
|
98 | + require_once __DIR__.'/../../Models/DDC3231/DDC3231User1NoNamespace.php'; |
|
99 | 99 | |
100 | 100 | $className2 = 'DDC3231User1NoNamespaceTmp'; |
101 | 101 | $this->writeEntityClass(\DDC3231User1NoNamespace::class, $className2); |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | $repo2 = new \ReflectionClass($em->getRepository($className2)); |
110 | 110 | |
111 | 111 | self::assertFalse($repo2->inNamespace()); |
112 | - self::assertSame($className2 . 'Repository', $repo2->getName()); |
|
112 | + self::assertSame($className2.'Repository', $repo2->getName()); |
|
113 | 113 | self::assertSame(EntityRepository::class, $repo2->getParentClass()->getName()); |
114 | 114 | } |
115 | 115 | |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | $em = $this->getTestEntityManager(); |
122 | 122 | $ns = $this->namespace; |
123 | 123 | |
124 | - $className = $ns . '\DDC3231User2Tmp'; |
|
124 | + $className = $ns.'\DDC3231User2Tmp'; |
|
125 | 125 | $this->writeEntityClass(DDC3231User2::class, $className); |
126 | 126 | |
127 | 127 | $rpath = $this->writeRepositoryClass($className, DDC3231EntityRepository::class); |
@@ -134,11 +134,11 @@ discard block |
||
134 | 134 | $repo = new \ReflectionClass($em->getRepository($className)); |
135 | 135 | |
136 | 136 | self::assertTrue($repo->inNamespace()); |
137 | - self::assertSame($className . 'Repository', $repo->getName()); |
|
137 | + self::assertSame($className.'Repository', $repo->getName()); |
|
138 | 138 | self::assertSame(DDC3231EntityRepository::class, $repo->getParentClass()->getName()); |
139 | 139 | |
140 | 140 | |
141 | - require_once __DIR__ . '/../../Models/DDC3231/DDC3231User2NoNamespace.php'; |
|
141 | + require_once __DIR__.'/../../Models/DDC3231/DDC3231User2NoNamespace.php'; |
|
142 | 142 | |
143 | 143 | $className2 = 'DDC3231User2NoNamespaceTmp'; |
144 | 144 | $this->writeEntityClass('DDC3231User2NoNamespace', $className2); |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | $repo2 = new \ReflectionClass($em->getRepository($className2)); |
154 | 154 | |
155 | 155 | self::assertFalse($repo2->inNamespace()); |
156 | - self::assertSame($className2 . 'Repository', $repo2->getName()); |
|
156 | + self::assertSame($className2.'Repository', $repo2->getName()); |
|
157 | 157 | self::assertSame(DDC3231EntityRepository::class, $repo2->getParentClass()->getName()); |
158 | 158 | } |
159 | 159 | |
@@ -172,11 +172,11 @@ discard block |
||
172 | 172 | |
173 | 173 | // @todo guilhermeblanco Fix this test as changing Entity class should never be allowed. |
174 | 174 | $metadata->setClassName($newClassName); |
175 | - $metadata->setCustomRepositoryClassName($newClassName . "Repository"); |
|
175 | + $metadata->setCustomRepositoryClassName($newClassName."Repository"); |
|
176 | 176 | |
177 | 177 | $this->generator->writeEntityClass($metadata, $this->tmpDir); |
178 | 178 | |
179 | - require $this->tmpDir . DIRECTORY_SEPARATOR . str_replace('\\', DIRECTORY_SEPARATOR, $newClassName) . ".php"; |
|
179 | + require $this->tmpDir.DIRECTORY_SEPARATOR.str_replace('\\', DIRECTORY_SEPARATOR, $newClassName).".php"; |
|
180 | 180 | } |
181 | 181 | |
182 | 182 | /** |
@@ -188,9 +188,9 @@ discard block |
||
188 | 188 | { |
189 | 189 | $this->repositoryGenerator->setDefaultRepositoryName($defaultRepository); |
190 | 190 | |
191 | - $this->repositoryGenerator->writeEntityRepositoryClass($className . 'Repository', $this->tmpDir); |
|
191 | + $this->repositoryGenerator->writeEntityRepositoryClass($className.'Repository', $this->tmpDir); |
|
192 | 192 | |
193 | - return $this->tmpDir . DIRECTORY_SEPARATOR . str_replace('\\', DIRECTORY_SEPARATOR, $className) . 'Repository.php'; |
|
193 | + return $this->tmpDir.DIRECTORY_SEPARATOR.str_replace('\\', DIRECTORY_SEPARATOR, $className).'Repository.php'; |
|
194 | 194 | } |
195 | 195 | |
196 | 196 | } |