Passed
Push — types ( 182a49...c9090a )
by Jonathan
02:02
created
lib/Doctrine/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.
tests/Doctrine/Tests/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.
lib/Doctrine/Persistence/Mapping/RuntimeReflectionService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      */
23 23
     public function getParentClasses(string $class) : array
24 24
     {
25
-        if (! class_exists($class)) {
25
+        if (!class_exists($class)) {
26 26
             throw MappingException::nonExistingClass($class);
27 27
         }
28 28
 
Please login to merge, or discard this patch.
lib/Doctrine/Persistence/Mapping/Driver/StaticPHPDriver.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
             return $this->classNames;
73 73
         }
74 74
 
75
-        if (! $this->paths) {
75
+        if (!$this->paths) {
76 76
             throw MappingException::pathRequired();
77 77
         }
78 78
 
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         $includedFiles = [];
81 81
 
82 82
         foreach ($this->paths as $path) {
83
-            if (! is_dir($path)) {
83
+            if (!is_dir($path)) {
84 84
                 throw MappingException::fileMappingDriversRequireConfiguredDirectoryPath($path);
85 85
             }
86 86
 
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
         foreach ($declared as $className) {
106 106
             $rc         = new ReflectionClass($className);
107 107
             $sourceFile = $rc->getFileName();
108
-            if (! in_array($sourceFile, $includedFiles) || $this->isTransient($className)) {
108
+            if (!in_array($sourceFile, $includedFiles) || $this->isTransient($className)) {
109 109
                 continue;
110 110
             }
111 111
 
@@ -122,6 +122,6 @@  discard block
 block discarded – undo
122 122
      */
123 123
     public function isTransient(string $className) : bool
124 124
     {
125
-        return ! method_exists($className, 'loadMetadata');
125
+        return !method_exists($className, 'loadMetadata');
126 126
     }
127 127
 }
Please login to merge, or discard this patch.
lib/Doctrine/Persistence/Mapping/Driver/DefaultFileLocator.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -90,12 +90,12 @@  discard block
 block discarded – undo
90 90
      */
91 91
     public function findMappingFile(string $className) : string
92 92
     {
93
-        $fileName = str_replace('\\', '.', $className) . $this->fileExtension;
93
+        $fileName = str_replace('\\', '.', $className).$this->fileExtension;
94 94
 
95 95
         // Check whether file exists
96 96
         foreach ($this->paths as $path) {
97
-            if (is_file($path . DIRECTORY_SEPARATOR . $fileName)) {
98
-                return $path . DIRECTORY_SEPARATOR . $fileName;
97
+            if (is_file($path.DIRECTORY_SEPARATOR.$fileName)) {
98
+                return $path.DIRECTORY_SEPARATOR.$fileName;
99 99
             }
100 100
         }
101 101
 
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 
112 112
         if ($this->paths) {
113 113
             foreach ($this->paths as $path) {
114
-                if (! is_dir($path)) {
114
+                if (!is_dir($path)) {
115 115
                     throw MappingException::fileMappingDriversRequireConfiguredDirectoryPath($path);
116 116
                 }
117 117
 
@@ -141,11 +141,11 @@  discard block
 block discarded – undo
141 141
      */
142 142
     public function fileExists(string $className) : bool
143 143
     {
144
-        $fileName = str_replace('\\', '.', $className) . $this->fileExtension;
144
+        $fileName = str_replace('\\', '.', $className).$this->fileExtension;
145 145
 
146 146
         // Check whether file exists
147 147
         foreach ((array) $this->paths as $path) {
148
-            if (is_file($path . DIRECTORY_SEPARATOR . $fileName)) {
148
+            if (is_file($path.DIRECTORY_SEPARATOR.$fileName)) {
149 149
                 return true;
150 150
             }
151 151
         }
Please login to merge, or discard this patch.
lib/Doctrine/Persistence/Mapping/Driver/AnnotationDriver.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     {
81 81
         $this->reader = $reader;
82 82
 
83
-        if (! $paths) {
83
+        if (!$paths) {
84 84
             return;
85 85
         }
86 86
 
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
             return $this->classNames;
185 185
         }
186 186
 
187
-        if (! $this->paths) {
187
+        if (!$this->paths) {
188 188
             throw MappingException::pathRequired();
189 189
         }
190 190
 
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
         $includedFiles = [];
193 193
 
194 194
         foreach ($this->paths as $path) {
195
-            if (! is_dir($path)) {
195
+            if (!is_dir($path)) {
196 196
                 throw MappingException::fileMappingDriversRequireConfiguredDirectoryPath($path);
197 197
             }
198 198
 
@@ -201,14 +201,14 @@  discard block
 block discarded – undo
201 201
                     new RecursiveDirectoryIterator($path, FilesystemIterator::SKIP_DOTS),
202 202
                     RecursiveIteratorIterator::LEAVES_ONLY
203 203
                 ),
204
-                '/^.+' . preg_quote($this->fileExtension) . '$/i',
204
+                '/^.+'.preg_quote($this->fileExtension).'$/i',
205 205
                 RecursiveRegexIterator::GET_MATCH
206 206
             );
207 207
 
208 208
             foreach ($iterator as $file) {
209 209
                 $sourceFile = $file[0];
210 210
 
211
-                if (! preg_match('(^phar:)i', $sourceFile)) {
211
+                if (!preg_match('(^phar:)i', $sourceFile)) {
212 212
                     $sourceFile = realpath($sourceFile);
213 213
                 }
214 214
 
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
         foreach ($declared as $className) {
236 236
             $rc         = new ReflectionClass($className);
237 237
             $sourceFile = $rc->getFileName();
238
-            if (! in_array($sourceFile, $includedFiles) || $this->isTransient($className)) {
238
+            if (!in_array($sourceFile, $includedFiles) || $this->isTransient($className)) {
239 239
                 continue;
240 240
             }
241 241
 
Please login to merge, or discard this patch.
lib/Doctrine/Persistence/Mapping/MappingException.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,18 +26,18 @@
 block discarded – undo
26 26
 
27 27
     public static function pathRequired() : self
28 28
     {
29
-        return new self('Specifying the paths to your entities is required ' .
29
+        return new self('Specifying the paths to your entities is required '.
30 30
             'in the AnnotationDriver to retrieve all class names.');
31 31
     }
32 32
 
33 33
     public static function fileMappingDriversRequireConfiguredDirectoryPath(?string $path = null) : self
34 34
     {
35
-        if (! empty($path)) {
36
-            $path = '[' . $path . ']';
35
+        if (!empty($path)) {
36
+            $path = '['.$path.']';
37 37
         }
38 38
 
39 39
         return new self(sprintf(
40
-            'File mapping drivers must have a valid directory path, ' .
40
+            'File mapping drivers must have a valid directory path, '.
41 41
             'however the given path %s seems to be incorrect!',
42 42
             $path
43 43
         ));
Please login to merge, or discard this patch.
lib/Doctrine/Persistence/Event/PreUpdateEventArgs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
      */
90 90
     private function assertValidField(string $field) : void
91 91
     {
92
-        if (! isset($this->entityChangeSet[$field])) {
92
+        if (!isset($this->entityChangeSet[$field])) {
93 93
             throw new InvalidArgumentException(sprintf(
94 94
                 'Field "%s" is not a valid field of the entity "%s" in PreUpdateEventArgs.',
95 95
                 $field,
Please login to merge, or discard this patch.
tests/Doctrine/Tests/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(string $namespaceAlias, string $simpleClassName) : string
37 37
     {
38
-        return __NAMESPACE__ . '\\' . $simpleClassName;
38
+        return __NAMESPACE__.'\\'.$simpleClassName;
39 39
     }
40 40
 
41 41
     protected function initialize() : void
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
     protected function onNotFoundMetadata(string $className) : ?ClassMetadata
69 69
     {
70
-        if (! $this->fallbackCallback) {
70
+        if (!$this->fallbackCallback) {
71 71
             return null;
72 72
         }
73 73
 
Please login to merge, or discard this patch.