@@ -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\Tools\Console; |
| 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\Console\Command; |
| 6 | 6 | |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | ], ['decorated' => false] |
| 56 | 56 | ); |
| 57 | 57 | |
| 58 | - self::assertEquals('Clearing all second-level cache collection regions' . PHP_EOL, $tester->getDisplay()); |
|
| 58 | + self::assertEquals('Clearing all second-level cache collection regions'.PHP_EOL, $tester->getDisplay()); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | public function testClearByOwnerEntityClassName() |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | ], ['decorated' => false] |
| 71 | 71 | ); |
| 72 | 72 | |
| 73 | - self::assertEquals('Clearing second-level cache for collection "Doctrine\Tests\Models\Cache\State#cities"' . PHP_EOL, $tester->getDisplay()); |
|
| 73 | + self::assertEquals('Clearing second-level cache for collection "Doctrine\Tests\Models\Cache\State#cities"'.PHP_EOL, $tester->getDisplay()); |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | public function testClearCacheEntryName() |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | ], ['decorated' => false] |
| 87 | 87 | ); |
| 88 | 88 | |
| 89 | - self::assertEquals('Clearing second-level cache entry for collection "Doctrine\Tests\Models\Cache\State#cities" owner entity identified by "1"' . PHP_EOL, $tester->getDisplay()); |
|
| 89 | + self::assertEquals('Clearing second-level cache entry for collection "Doctrine\Tests\Models\Cache\State#cities" owner entity identified by "1"'.PHP_EOL, $tester->getDisplay()); |
|
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | public function testFlushRegionName() |
@@ -102,6 +102,6 @@ discard block |
||
| 102 | 102 | ], ['decorated' => false] |
| 103 | 103 | ); |
| 104 | 104 | |
| 105 | - self::assertEquals('Flushing cache provider configured for "Doctrine\Tests\Models\Cache\State#cities"' . PHP_EOL, $tester->getDisplay()); |
|
| 105 | + self::assertEquals('Flushing cache provider configured for "Doctrine\Tests\Models\Cache\State#cities"'.PHP_EOL, $tester->getDisplay()); |
|
| 106 | 106 | } |
| 107 | 107 | } |
@@ -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\Tools\Console\Command; |
| 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\Console\Command; |
| 6 | 6 | |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | ], ['decorated' => false] |
| 56 | 56 | ); |
| 57 | 57 | |
| 58 | - self::assertEquals('Clearing all second-level cache entity regions' . PHP_EOL, $tester->getDisplay()); |
|
| 58 | + self::assertEquals('Clearing all second-level cache entity regions'.PHP_EOL, $tester->getDisplay()); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | public function testClearByEntityClassName() |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | ], ['decorated' => false] |
| 70 | 70 | ); |
| 71 | 71 | |
| 72 | - self::assertEquals('Clearing second-level cache for entity "Doctrine\Tests\Models\Cache\Country"' . PHP_EOL, $tester->getDisplay()); |
|
| 72 | + self::assertEquals('Clearing second-level cache for entity "Doctrine\Tests\Models\Cache\Country"'.PHP_EOL, $tester->getDisplay()); |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | public function testClearCacheEntryName() |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | ], ['decorated' => false] |
| 85 | 85 | ); |
| 86 | 86 | |
| 87 | - self::assertEquals('Clearing second-level cache entry for entity "Doctrine\Tests\Models\Cache\Country" identified by "1"' . PHP_EOL, $tester->getDisplay()); |
|
| 87 | + self::assertEquals('Clearing second-level cache entry for entity "Doctrine\Tests\Models\Cache\Country" identified by "1"'.PHP_EOL, $tester->getDisplay()); |
|
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | public function testFlushRegionName() |
@@ -99,6 +99,6 @@ discard block |
||
| 99 | 99 | ], ['decorated' => false] |
| 100 | 100 | ); |
| 101 | 101 | |
| 102 | - self::assertEquals('Flushing cache provider configured for entity named "Doctrine\Tests\Models\Cache\Country"' . PHP_EOL, $tester->getDisplay()); |
|
| 102 | + self::assertEquals('Flushing cache provider configured for entity named "Doctrine\Tests\Models\Cache\Country"'.PHP_EOL, $tester->getDisplay()); |
|
| 103 | 103 | } |
| 104 | 104 | } |
@@ -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\Console\Command; |
| 6 | 6 | |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | ], ['decorated' => false] |
| 55 | 55 | ); |
| 56 | 56 | |
| 57 | - self::assertEquals('Clearing all second-level cache query regions' . PHP_EOL, $tester->getDisplay()); |
|
| 57 | + self::assertEquals('Clearing all second-level cache query regions'.PHP_EOL, $tester->getDisplay()); |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | public function testClearDefaultRegionName() |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | ], ['decorated' => false] |
| 69 | 69 | ); |
| 70 | 70 | |
| 71 | - self::assertEquals('Clearing second-level cache query region named "query_cache_region"' . PHP_EOL, $tester->getDisplay()); |
|
| 71 | + self::assertEquals('Clearing second-level cache query region named "query_cache_region"'.PHP_EOL, $tester->getDisplay()); |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | public function testClearByRegionName() |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | ], ['decorated' => false] |
| 83 | 83 | ); |
| 84 | 84 | |
| 85 | - self::assertEquals('Clearing second-level cache query region named "my_region"' . PHP_EOL, $tester->getDisplay()); |
|
| 85 | + self::assertEquals('Clearing second-level cache query region named "my_region"'.PHP_EOL, $tester->getDisplay()); |
|
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | public function testFlushRegionName() |
@@ -97,6 +97,6 @@ discard block |
||
| 97 | 97 | ], ['decorated' => false] |
| 98 | 98 | ); |
| 99 | 99 | |
| 100 | - self::assertEquals('Flushing cache provider configured for second-level cache query region named "my_region"' . PHP_EOL, $tester->getDisplay()); |
|
| 100 | + self::assertEquals('Flushing cache provider configured for second-level cache query region named "my_region"'.PHP_EOL, $tester->getDisplay()); |
|
| 101 | 101 | } |
| 102 | 102 | } |
@@ -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\Console\Command; |
| 6 | 6 | |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | $this->tester->execute( |
| 70 | 70 | [ |
| 71 | 71 | 'command' => $this->command->getName(), |
| 72 | - 'dql' => 'SELECT e FROM ' . DateTimeModel::class . ' e', |
|
| 72 | + 'dql' => 'SELECT e FROM '.DateTimeModel::class.' e', |
|
| 73 | 73 | ] |
| 74 | 74 | ) |
| 75 | 75 | ); |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | $this->tester->execute( |
| 88 | 88 | [ |
| 89 | 89 | 'command' => $this->command->getName(), |
| 90 | - 'dql' => 'SELECT e FROM ' . DateTimeModel::class . ' e', |
|
| 90 | + 'dql' => 'SELECT e FROM '.DateTimeModel::class.' e', |
|
| 91 | 91 | '--show-sql' => 'true' |
| 92 | 92 | ] |
| 93 | 93 | ) |
@@ -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\Tools\Pagination; |
| 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\Pagination; |
| 6 | 6 | |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | */ |
| 138 | 138 | public function testWhereInQueryWithArbitraryJoin_NoWhere() |
| 139 | 139 | { |
| 140 | - $whereInQuery = $this->entityManager->createQuery( |
|
| 140 | + $whereInQuery = $this->entityManager->createQuery( |
|
| 141 | 141 | 'SELECT p FROM Doctrine\Tests\ORM\Tools\Pagination\BlogPost p JOIN Doctrine\Tests\ORM\Tools\Pagination\Category c WITH p.category = c' |
| 142 | 142 | ); |
| 143 | 143 | $whereInQuery->setHint(Query::HINT_CUSTOM_TREE_WALKERS, [WhereInWalker::class]); |
@@ -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\Cache; |
| 6 | 6 | |