Failed Conditions
Push — master ( ec2bd1...5afe97 )
by Jonathan
41s
created
lib/Doctrine/Common/Persistence/Mapping/Driver/MappingDriverChain.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
         foreach ($this->drivers as $namespace => $driver) {
94 94
             $oid = spl_object_hash($driver);
95 95
 
96
-            if (! isset($driverClasses[$oid])) {
96
+            if (!isset($driverClasses[$oid])) {
97 97
                 $driverClasses[$oid] = $driver->getAllClassNames();
98 98
             }
99 99
 
Please login to merge, or discard this patch.
lib/Doctrine/Common/Reflection/RuntimePublicReflectionProperty.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     {
24 24
         $name = $this->getName();
25 25
 
26
-        if ($object instanceof Proxy && ! $object->__isInitialized()) {
26
+        if ($object instanceof Proxy && !$object->__isInitialized()) {
27 27
             $originalInitializer = $object->__getInitializer();
28 28
             $object->__setInitializer(null);
29 29
             $val = $object->$name ?? null;
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      */
45 45
     public function setValue($object, $value = null)
46 46
     {
47
-        if (! ($object instanceof Proxy && ! $object->__isInitialized())) {
47
+        if (!($object instanceof Proxy && !$object->__isInitialized())) {
48 48
             parent::setValue($object, $value);
49 49
 
50 50
             return;
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Common/Persistence/Mapping/PHPDriverTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
         $metadata = $this->createMock(ClassMetadata::class);
17 17
         $metadata->expects($this->once())->method('getFieldNames');
18 18
 
19
-        $driver = new PHPDriver([__DIR__ . '/_files']);
19
+        $driver = new PHPDriver([__DIR__.'/_files']);
20 20
         $driver->loadMetadataForClass('TestEntity', $metadata);
21 21
     }
22 22
 }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Common/Persistence/PersistentObjectTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         $this->cm = new TestObjectMetadata();
36 36
         $this->om = $this->createMock(ObjectManager::class);
37 37
         $this->om->expects($this->any())->method('getClassMetadata')
38
-                 ->will($this->returnValue($this->cm));
38
+                    ->will($this->returnValue($this->cm));
39 39
         $this->object = new TestObject();
40 40
         PersistentObject::setObjectManager($this->om);
41 41
         $this->object->injectObjectManager($this->om, $this->cm);
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Common/Util/ClassUtilsTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,9 +18,9 @@
 block discarded – undo
18 18
             return [
19 19
                 [\stdClass::class, \stdClass::class],
20 20
                 [ClassUtils::class, ClassUtils::class],
21
-                [ 'MyProject\Proxies\__CG__\stdClass', \stdClass::class],
22
-                [ 'MyProject\Proxies\__CG__\OtherProject\Proxies\__CG__\stdClass', \stdClass::class],
23
-                [ 'MyProject\Proxies\__CG__\Doctrine\Tests\Common\Util\ChildObject', ChildObject::class],
21
+                ['MyProject\Proxies\__CG__\stdClass', \stdClass::class],
22
+                ['MyProject\Proxies\__CG__\OtherProject\Proxies\__CG__\stdClass', \stdClass::class],
23
+                ['MyProject\Proxies\__CG__\Doctrine\Tests\Common\Util\ChildObject', ChildObject::class],
24 24
             ];
25 25
         }
26 26
 
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
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 
80 80
     private function getManagerFactory()
81 81
     {
82
-        return function () {
82
+        return function() {
83 83
             $mock     = $this->createMock(ObjectManager::class);
84 84
             $driver   = $this->createMock(MappingDriver::class);
85 85
             $metadata = $this->createMock(ClassMetadata::class);
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 
119 119
     protected function getService($name)
120 120
     {
121
-        if (! isset($this->services[$name])) {
121
+        if (!isset($this->services[$name])) {
122 122
             $this->services[$name] = call_user_func($this->managerFactory);
123 123
         }
124 124
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Common/Persistence/Mapping/SymfonyFileLocatorTest.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 {
14 14
     public function testGetPaths()
15 15
     {
16
-        $path   = __DIR__ . '/_files';
16
+        $path   = __DIR__.'/_files';
17 17
         $prefix = 'Foo';
18 18
 
19 19
         $locator = new SymfonyFileLocator([$path => $prefix]);
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
     public function testGetPrefixes()
27 27
     {
28
-        $path   = __DIR__ . '/_files';
28
+        $path   = __DIR__.'/_files';
29 29
         $prefix = 'Foo';
30 30
 
31 31
         $locator = new SymfonyFileLocator([$path => $prefix]);
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
     public function testFileExists()
44 44
     {
45
-        $path   = __DIR__ . '/_files';
45
+        $path   = __DIR__.'/_files';
46 46
         $prefix = 'Foo';
47 47
 
48 48
         $locator = new SymfonyFileLocator([$path => $prefix], '.yml');
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
     public function testGetAllClassNames()
57 57
     {
58
-        $path   = __DIR__ . '/_files';
58
+        $path   = __DIR__.'/_files';
59 59
         $prefix = 'Foo';
60 60
 
61 61
         $locator       = new SymfonyFileLocator([$path => $prefix], '.yml');
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      */
81 81
     public function testInvalidCustomNamespaceSeparator()
82 82
     {
83
-        $path   = __DIR__ . '/_files';
83
+        $path   = __DIR__.'/_files';
84 84
         $prefix = 'Foo';
85 85
 
86 86
         new SymfonyFileLocator([$path => $prefix], '.yml', null);
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
      */
105 105
     public function testGetClassNamesWithCustomNsSeparator($separator, $dir)
106 106
     {
107
-        $path   = __DIR__ . $dir;
107
+        $path   = __DIR__.$dir;
108 108
         $prefix = 'Foo';
109 109
 
110 110
         $locator = new SymfonyFileLocator([$path => $prefix], '.yml', $separator);
@@ -147,30 +147,30 @@  discard block
 block discarded – undo
147 147
      */
148 148
     public function testFindMappingFileWithCustomNsSeparator($separator, $dir, $files)
149 149
     {
150
-        $path   = __DIR__ . $dir;
150
+        $path   = __DIR__.$dir;
151 151
         $prefix = 'Foo';
152 152
 
153 153
         $locator = new SymfonyFileLocator([$path => $prefix], '.yml', $separator);
154 154
 
155 155
         foreach ($files as $filePath => $className) {
156
-            self::assertEquals(realpath($path . '/' . $filePath), realpath($locator->findMappingFile($className)));
156
+            self::assertEquals(realpath($path.'/'.$filePath), realpath($locator->findMappingFile($className)));
157 157
         }
158 158
     }
159 159
 
160 160
 
161 161
     public function testFindMappingFile()
162 162
     {
163
-        $path   = __DIR__ . '/_files';
163
+        $path   = __DIR__.'/_files';
164 164
         $prefix = 'Foo';
165 165
 
166 166
         $locator = new SymfonyFileLocator([$path => $prefix], '.yml');
167 167
 
168
-        self::assertEquals(__DIR__ . '/_files/stdClass.yml', $locator->findMappingFile('Foo\\stdClass'));
168
+        self::assertEquals(__DIR__.'/_files/stdClass.yml', $locator->findMappingFile('Foo\\stdClass'));
169 169
     }
170 170
 
171 171
     public function testFindMappingFileNotFound()
172 172
     {
173
-        $path   = __DIR__ . '/_files';
173
+        $path   = __DIR__.'/_files';
174 174
         $prefix = 'Foo';
175 175
 
176 176
         $locator = new SymfonyFileLocator([$path => $prefix], '.yml');
@@ -184,13 +184,13 @@  discard block
 block discarded – undo
184 184
     {
185 185
         // Low -> High
186 186
         $prefixes                             = [];
187
-        $prefixes[__DIR__ . '/_match_ns']     = 'Foo';
188
-        $prefixes[__DIR__ . '/_match_ns/Bar'] = 'Foo\\Bar';
187
+        $prefixes[__DIR__.'/_match_ns']     = 'Foo';
188
+        $prefixes[__DIR__.'/_match_ns/Bar'] = 'Foo\\Bar';
189 189
 
190 190
         $locator = new SymfonyFileLocator($prefixes, '.yml');
191 191
 
192 192
         self::assertEquals(
193
-            __DIR__ . '/_match_ns/Bar/barEntity.yml',
193
+            __DIR__.'/_match_ns/Bar/barEntity.yml',
194 194
             $locator->findMappingFile("Foo\\Bar\\barEntity")
195 195
         );
196 196
     }
@@ -198,13 +198,13 @@  discard block
 block discarded – undo
198 198
     public function testFindMappingFileMostSpecificNamespaceFirst()
199 199
     {
200 200
         $prefixes                             = [];
201
-        $prefixes[__DIR__ . '/_match_ns/Bar'] = 'Foo\\Bar';
202
-        $prefixes[__DIR__ . '/_match_ns']     = 'Foo';
201
+        $prefixes[__DIR__.'/_match_ns/Bar'] = 'Foo\\Bar';
202
+        $prefixes[__DIR__.'/_match_ns']     = 'Foo';
203 203
 
204 204
         $locator = new SymfonyFileLocator($prefixes, '.yml');
205 205
 
206 206
         self::assertEquals(
207
-            __DIR__ . '/_match_ns/Bar/barEntity.yml',
207
+            __DIR__.'/_match_ns/Bar/barEntity.yml',
208 208
             $locator->findMappingFile("Foo\\Bar\\barEntity")
209 209
         );
210 210
     }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Common/Persistence/Mapping/DefaultFileLocatorTest.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 {
13 13
     public function testGetPaths()
14 14
     {
15
-        $path = __DIR__ . '/_files';
15
+        $path = __DIR__.'/_files';
16 16
 
17 17
         $locator = new DefaultFileLocator([$path]);
18 18
         self::assertEquals([$path], $locator->getPaths());
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 
32 32
     public function testUniquePaths()
33 33
     {
34
-        $path = __DIR__ . '/_files';
34
+        $path = __DIR__.'/_files';
35 35
 
36 36
         $locator = new DefaultFileLocator([$path, $path]);
37 37
         self::assertEquals([$path], $locator->getPaths());
@@ -39,16 +39,16 @@  discard block
 block discarded – undo
39 39
 
40 40
     public function testFindMappingFile()
41 41
     {
42
-        $path = __DIR__ . '/_files';
42
+        $path = __DIR__.'/_files';
43 43
 
44 44
         $locator = new DefaultFileLocator([$path], '.yml');
45 45
 
46
-        self::assertEquals(__DIR__ . '/_files' . DIRECTORY_SEPARATOR . 'stdClass.yml', $locator->findMappingFile('stdClass'));
46
+        self::assertEquals(__DIR__.'/_files'.DIRECTORY_SEPARATOR.'stdClass.yml', $locator->findMappingFile('stdClass'));
47 47
     }
48 48
 
49 49
     public function testFindMappingFileNotFound()
50 50
     {
51
-        $path = __DIR__ . '/_files';
51
+        $path = __DIR__.'/_files';
52 52
 
53 53
         $locator = new DefaultFileLocator([$path], '.yml');
54 54
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
     public function testGetAllClassNames()
61 61
     {
62
-        $path = __DIR__ . '/_files';
62
+        $path = __DIR__.'/_files';
63 63
 
64 64
         $locator       = new DefaultFileLocator([$path], '.yml');
65 65
         $allClasses    = $locator->getAllClassNames(null);
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 
80 80
     public function testGetAllClassNamesNonMatchingFileExtension()
81 81
     {
82
-        $path = __DIR__ . '/_files';
82
+        $path = __DIR__.'/_files';
83 83
 
84 84
         $locator = new DefaultFileLocator([$path], '.xml');
85 85
         self::assertEquals([], $locator->getAllClassNames('global'));
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 
88 88
     public function testFileExists()
89 89
     {
90
-        $path = __DIR__ . '/_files';
90
+        $path = __DIR__.'/_files';
91 91
 
92 92
         $locator = new DefaultFileLocator([$path], '.yml');
93 93
 
Please login to merge, or discard this patch.
Doctrine/Tests/Common/Persistence/Mapping/ClassMetadataFactoryTest.php 1 patch
Spacing   +8 added lines, -8 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 = function () use ($classMetadata) {
114
+        $this->cmf->fallbackCallback = 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 = function () {
125
+        $this->cmf->fallbackCallback = function() {
126 126
             return null;
127 127
         };
128 128
 
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
 
186 186
     protected function getFqcnFromAlias($namespaceAlias, $simpleClassName)
187 187
     {
188
-        return __NAMESPACE__ . '\\' . $simpleClassName;
188
+        return __NAMESPACE__.'\\'.$simpleClassName;
189 189
     }
190 190
 
191 191
     protected function initialize()
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
 
217 217
     protected function onNotFoundMetadata($className)
218 218
     {
219
-        if (! $this->fallbackCallback) {
219
+        if (!$this->fallbackCallback) {
220 220
             return null;
221 221
         }
222 222
 
Please login to merge, or discard this patch.