Passed
Pull Request — master (#7244)
by
unknown
09:28
created
ORM/Cache/Persister/Collection/ReadWriteCachedCollectionPersister.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
         $isInitialized = $collection->isInitialized();
62 62
         $isDirty       = $collection->isDirty();
63 63
 
64
-        if (! $isInitialized && ! $isDirty) {
64
+        if ( ! $isInitialized && ! $isDirty) {
65 65
             return;
66 66
         }
67 67
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query/ResultSetMapping.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
         $found = false;
225 225
 
226 226
         foreach (array_merge($this->metaMappings, $this->fieldMappings) as $columnName => $columnFieldName) {
227
-            if (! ($columnFieldName === $fieldName && $this->columnOwnerMap[$columnName] === $alias)) {
227
+            if ( ! ($columnFieldName === $fieldName && $this->columnOwnerMap[$columnName] === $alias)) {
228 228
                 continue;
229 229
             }
230 230
 
@@ -339,7 +339,7 @@  discard block
 block discarded – undo
339 339
             throw new \LogicException(sprintf('Alias %s does not exist in alias map', $alias));
340 340
         }
341 341
 
342
-        if (! $this->isMixed && $this->scalarMappings) {
342
+        if ( ! $this->isMixed && $this->scalarMappings) {
343 343
             $this->isMixed = true;
344 344
         }
345 345
 
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
         $this->scalarMappings[$columnName] = $alias;
385 385
         $this->typeMappings[$columnName]   = $type;
386 386
 
387
-        if (! $this->isMixed && $this->fieldMappings) {
387
+        if ( ! $this->isMixed && $this->fieldMappings) {
388 388
             $this->isMixed = true;
389 389
         }
390 390
 
Please login to merge, or discard this patch.