Passed
Pull Request — master (#7244)
by
unknown
09:28
created
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.