Completed
Push — develop ( d1cf9a...2537c7 )
by Michael
243:37 queued 235:45
created
tests/Doctrine/Tests/ORM/Tools/SetupTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.