@@ -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 | |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | |
41 | 41 | public function testDirectoryAutoload() |
42 | 42 | { |
43 | - Setup::registerAutoloadDirectory(__DIR__ . "/../../../../../vendor/doctrine/common/lib"); |
|
43 | + Setup::registerAutoloadDirectory(__DIR__."/../../../../../vendor/doctrine/common/lib"); |
|
44 | 44 | |
45 | 45 | self::assertCount($this->originalAutoloaderCount + 2, spl_autoload_functions()); |
46 | 46 | } |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | $config = Setup::createConfiguration(false, __DIR__); |
72 | 72 | $cache = $config->getMetadataCacheImpl(); |
73 | 73 | |
74 | - self::assertSame('dc2_' . md5(__DIR__) . '_', $cache->getNamespace()); |
|
74 | + self::assertSame('dc2_'.md5(__DIR__).'_', $cache->getNamespace()); |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | $config = Setup::createConfiguration(false, __DIR__, new ArrayCache()); |
83 | 83 | $cache = $config->getMetadataCacheImpl(); |
84 | 84 | |
85 | - self::assertSame('dc2_' . md5(__DIR__) . '_', $cache->getNamespace()); |
|
85 | + self::assertSame('dc2_'.md5(__DIR__).'_', $cache->getNamespace()); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | /** |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | $cache = $config->getMetadataCacheImpl(); |
98 | 98 | |
99 | 99 | self::assertSame($originalCache, $cache); |
100 | - self::assertSame('foo:dc2_' . md5(__DIR__) . '_', $cache->getNamespace()); |
|
100 | + self::assertSame('foo:dc2_'.md5(__DIR__).'_', $cache->getNamespace()); |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | /** |