Passed
Push — 1.3.x ( 43526a...727955 )
by Andreas
52s queued 11s
created
Doctrine/Tests/Common/Persistence/Mapping/ClassMetadataFactoryTest.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     public function testGetMetadataForAbsentClass()
46 46
     {
47 47
         $this->expectException(MappingException::class);
48
-        $this->cmf->getMetadataFor(__NAMESPACE__ . '\AbsentClass');
48
+        $this->cmf->getMetadataFor(__NAMESPACE__.'\AbsentClass');
49 49
     }
50 50
 
51 51
     public function testGetParentMetadata()
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     {
62 62
         $metadata = $this->createMock(ClassMetadata::class);
63 63
         $cache    = new ArrayCache();
64
-        $cache->save(ChildEntity::class . '$CLASSMETADATA', $metadata);
64
+        $cache->save(ChildEntity::class.'$CLASSMETADATA', $metadata);
65 65
 
66 66
         $this->cmf->setCacheDriver($cache);
67 67
 
@@ -75,14 +75,14 @@  discard block
 block discarded – undo
75 75
 
76 76
         $loadedMetadata = $this->cmf->getMetadataFor(ChildEntity::class);
77 77
 
78
-        self::assertSame($loadedMetadata, $cache->fetch(ChildEntity::class . '$CLASSMETADATA'));
78
+        self::assertSame($loadedMetadata, $cache->fetch(ChildEntity::class.'$CLASSMETADATA'));
79 79
     }
80 80
 
81 81
     public function testGetAliasedMetadata()
82 82
     {
83 83
         $this->cmf->getMetadataFor('prefix:ChildEntity');
84 84
 
85
-        self::assertTrue($this->cmf->hasMetadataFor(__NAMESPACE__ . '\ChildEntity'));
85
+        self::assertTrue($this->cmf->hasMetadataFor(__NAMESPACE__.'\ChildEntity'));
86 86
         self::assertTrue($this->cmf->hasMetadataFor('prefix:ChildEntity'));
87 87
     }
88 88
 
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     {
112 112
         $classMetadata = $this->createMock(ClassMetadata::class);
113 113
 
114
-        $this->cmf->fallbackCallback = static function () use ($classMetadata) {
114
+        $this->cmf->fallbackCallback = static function() use ($classMetadata) {
115 115
             return $classMetadata;
116 116
         };
117 117
 
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
 
123 123
     public function testWillFailOnFallbackFailureWithNotLoadedMetadata()
124 124
     {
125
-        $this->cmf->fallbackCallback = static function () {
125
+        $this->cmf->fallbackCallback = static function() {
126 126
             return null;
127 127
         };
128 128
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Common/Persistence/ManagerRegistryTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
 
161 161
     private function getManagerFactory()
162 162
     {
163
-        return function (string $name) {
163
+        return function(string $name) {
164 164
             $mock     = $this->createMock(ObjectManager::class);
165 165
             $driver   = $this->createMock(MappingDriver::class);
166 166
             $metadata = $this->createMock(ClassMetadata::class);
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
 
206 206
     protected function getService($name)
207 207
     {
208
-        if (! isset($this->services[$name])) {
208
+        if (!isset($this->services[$name])) {
209 209
             $this->services[$name] = call_user_func($this->managerFactory, $name);
210 210
         }
211 211
 
Please login to merge, or discard this patch.
Doctrine/Tests/Common/Persistence/Mapping/TestClassMetadataFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 
36 36
     protected function getFqcnFromAlias($namespaceAlias, $simpleClassName)
37 37
     {
38
-        return __NAMESPACE__ . '\\' . $simpleClassName;
38
+        return __NAMESPACE__.'\\'.$simpleClassName;
39 39
     }
40 40
 
41 41
     protected function initialize()
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 
67 67
     protected function onNotFoundMetadata($className)
68 68
     {
69
-        if (! $this->fallbackCallback) {
69
+        if (!$this->fallbackCallback) {
70 70
             return null;
71 71
         }
72 72
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Common/Persistence/Mapping/FileDriverTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         $locator->expects($this->once())
37 37
                 ->method('findMappingFile')
38 38
                 ->with($this->equalTo('stdClass'))
39
-                ->will($this->returnValue(__DIR__ . '/_files/stdClass.yml'));
39
+                ->will($this->returnValue(__DIR__.'/_files/stdClass.yml'));
40 40
 
41 41
         $driver = new TestFileDriver($locator);
42 42
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
         $locator->expects($this->once())
52 52
             ->method('findMappingFile')
53 53
             ->with($this->equalTo('stdClass'))
54
-            ->will($this->returnValue(__DIR__ . '/_files/stdClass.yml'));
54
+            ->will($this->returnValue(__DIR__.'/_files/stdClass.yml'));
55 55
 
56 56
         $driver = new TestFileDriver($locator);
57 57
 
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 
133 133
     public function testNonLocatorFallback()
134 134
     {
135
-        $driver = new TestFileDriver(__DIR__ . '/_files', '.yml');
135
+        $driver = new TestFileDriver(__DIR__.'/_files', '.yml');
136 136
         self::assertTrue($driver->isTransient('stdClass2'));
137 137
         self::assertFalse($driver->isTransient('stdClass'));
138 138
     }
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     {
142 142
         $locator = $this->createMock(FileLocator::class);
143 143
         $locator->expects($this->any())->method('getFileExtension')->will($this->returnValue('.yml'));
144
-        $locator->expects($this->any())->method('getPaths')->will($this->returnValue([__DIR__ . '/_files']));
144
+        $locator->expects($this->any())->method('getPaths')->will($this->returnValue([__DIR__.'/_files']));
145 145
 
146 146
         return $locator;
147 147
     }
Please login to merge, or discard this patch.