Failed Conditions
Pull Request — develop (#6602)
by Mike
124:26 queued 59:45
created
tests/Doctrine/Tests/ORM/Tools/Pagination/LimitSubqueryOutputWalkerTest.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
         $this->entityManager->getConnection()->setDatabasePlatform(new PostgreSqlPlatform);
85 85
 
86 86
         $query = $this->entityManager->createQuery(
87
-           'SELECT u, g, COUNT(g.id) AS hidden g_quantity FROM Doctrine\Tests\ORM\Tools\Pagination\User u JOIN u.groups g ORDER BY g_quantity, u.id DESC'
87
+            'SELECT u, g, COUNT(g.id) AS hidden g_quantity FROM Doctrine\Tests\ORM\Tools\Pagination\User u JOIN u.groups g ORDER BY g_quantity, u.id DESC'
88 88
         );
89 89
         $limitQuery = clone $query;
90 90
         $limitQuery->setHint(Query::HINT_CUSTOM_OUTPUT_WALKER, LimitSubqueryOutputWalker::class);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\Tests\ORM\Tools\Pagination;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Mapping/BasicInheritanceMappingTest.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
     {
131 131
         $this->expectException(MappingException::class);
132 132
         $this->expectExceptionMessage(
133
-              'Entity \'Doctrine\Tests\ORM\Mapping\HierarchyBEntity\' has to be part of the discriminator map'
133
+                'Entity \'Doctrine\Tests\ORM\Mapping\HierarchyBEntity\' has to be part of the discriminator map'
134 134
             . ' of \'Doctrine\Tests\ORM\Mapping\HierarchyBase\' to be properly mapped in the inheritance hierarchy.'
135 135
             . ' Alternatively you can make \'Doctrine\Tests\ORM\Mapping\HierarchyBEntity\' an abstract class to'
136 136
             . ' avoid this exception from occurring.'
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\Tests\ORM\Mapping;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/Forum/ForumUser.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,18 +24,18 @@
 block discarded – undo
24 24
     public $avatar;
25 25
 
26 26
     public function getId() {
27
-    	return $this->id;
27
+        return $this->id;
28 28
     }
29 29
 
30 30
     public function getUsername() {
31
-    	return $this->username;
31
+        return $this->username;
32 32
     }
33 33
 
34 34
     public function getAvatar() {
35
-    	return $this->avatar;
35
+        return $this->avatar;
36 36
     }
37 37
 
38 38
     public function setAvatar(ForumAvatar $avatar) {
39
-    	$this->avatar = $avatar;
39
+        $this->avatar = $avatar;
40 40
     }
41 41
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\Tests\Models\Forum;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/OrmPerformanceTestCase.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,12 +25,12 @@
 block discarded – undo
25 25
 
26 26
         if ($this->maxRunningTime != 0 && $time > $this->maxRunningTime) {
27 27
             $this->fail(
28
-              sprintf(
28
+                sprintf(
29 29
                 'expected running time: <= %s but was: %s',
30 30
 
31 31
                 $this->maxRunningTime,
32 32
                 $time
33
-              )
33
+                )
34 34
             );
35 35
         }
36 36
     }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\Tests;
6 6
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     public function setMaxRunningTime($maxRunningTime)
50 50
     {
51
-        if (! (is_int($maxRunningTime) && $maxRunningTime >= 0)) {
51
+        if ( ! (is_int($maxRunningTime) && $maxRunningTime >= 0)) {
52 52
             throw new \InvalidArgumentException;
53 53
         }
54 54
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Cache/DefaultEntityHydrator.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
 namespace Doctrine\ORM\Cache;
24 24
 
25 25
 use Doctrine\Common\Util\ClassUtils;
26
-
27 26
 use Doctrine\ORM\Mapping\FetchMode;
28 27
 use Doctrine\ORM\Mapping\FieldMetadata;
29 28
 use Doctrine\ORM\Mapping\OneToOneAssociationMetadata;
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
  * <http://www.doctrine-project.org>.
19 19
  */
20 20
 
21
-declare(strict_types=1);
21
+declare(strict_types = 1);
22 22
 
23 23
 namespace Doctrine\ORM\Cache;
24 24
 
@@ -76,11 +76,11 @@  discard block
 block discarded – undo
76 76
         $data = array_merge($data, $persister->getIdentifier($entity)); // why update has no identifier values ?
77 77
 
78 78
         foreach ($metadata->getProperties() as $name => $association) {
79
-            if (! isset($data[$name]) || $association instanceof FieldMetadata) {
79
+            if ( ! isset($data[$name]) || $association instanceof FieldMetadata) {
80 80
                 continue;
81 81
             }
82 82
 
83
-            if (! $association instanceof ToOneAssociationMetadata) {
83
+            if ( ! $association instanceof ToOneAssociationMetadata) {
84 84
                 unset($data[$name]);
85 85
 
86 86
                 continue;
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
             $targetClassMetadata = $this->em->getClassMetadata($targetEntity);
91 91
             $targetPersister     = $this->uow->getEntityPersister($targetEntity);
92 92
 
93
-            if (! $association->getCache()) {
93
+            if ( ! $association->getCache()) {
94 94
                 $owningAssociation   = ! $association->isOwningSide()
95 95
                     ? $targetClassMetadata->getProperty($association->getMappedBy())
96 96
                     : $association;
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
                 continue;
139 139
             }
140 140
 
141
-            if (! $association->isPrimaryKey()) {
141
+            if ( ! $association->isPrimaryKey()) {
142 142
                 $targetClass = ClassUtils::getClass($data[$name]);
143 143
                 $targetId    = $this->uow->getEntityIdentifier($data[$name]);
144 144
                 $data[$name] = new AssociationCacheEntry($targetClass, $targetId);
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
                 ($association instanceof OneToOneAssociationMetadata && ! $association->isOwningSide())
189 189
             );
190 190
 
191
-            if (! $isEagerLoad) {
191
+            if ( ! $isEagerLoad) {
192 192
                 $data[$name] = $this->em->getReference($assocClass, $assocId);
193 193
 
194 194
                 continue;
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Cache/Region/DefaultMultiGetRegion.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -45,6 +45,7 @@
 block discarded – undo
45 45
      * {@inheritDoc}
46 46
      *
47 47
      * @param MultiGetCache $cache
48
+     * @param string $name
48 49
      */
49 50
     public function __construct($name, MultiGetCache $cache, $lifetime = 0)
50 51
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
  * <http://www.doctrine-project.org>.
19 19
  */
20 20
 
21
-declare(strict_types=1);
21
+declare(strict_types = 1);
22 22
 
23 23
 namespace Doctrine\ORM\Cache\Region;
24 24
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/EntityManager.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -600,7 +600,7 @@
 block discarded – undo
600 600
      * Clears the EntityManager. All entities that are currently managed
601 601
      * by this EntityManager become detached.
602 602
      *
603
-     * @param null $entityName Unused. @todo Remove from ObjectManager.
603
+     * @param string|null $entityName Unused. @todo Remove from ObjectManager.
604 604
      *
605 605
      * @return void
606 606
      */
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
  * <http://www.doctrine-project.org>.
18 18
  */
19 19
 
20
-declare(strict_types=1);
20
+declare(strict_types = 1);
21 21
 
22 22
 namespace Doctrine\ORM;
23 23
 
@@ -398,7 +398,7 @@  discard block
 block discarded – undo
398 398
         $class = $this->metadataFactory->getMetadataFor(ltrim($entityName, '\\'));
399 399
         $className = $class->getClassName();
400 400
 
401
-        if (! is_array($id)) {
401
+        if ( ! is_array($id)) {
402 402
             if ($class->isIdentifierComposite()) {
403 403
                 throw ORMInvalidArgumentException::invalidCompositeIdentifier();
404 404
             }
@@ -817,7 +817,7 @@  discard block
 block discarded – undo
817 817
      */
818 818
     public function isOpen()
819 819
     {
820
-        return (!$this->closed);
820
+        return ( ! $this->closed);
821 821
     }
822 822
 
823 823
     /**
@@ -928,7 +928,7 @@  discard block
 block discarded – undo
928 928
                 sprintf(
929 929
                     'Invalid $connection argument of type %s given%s.',
930 930
                     is_object($connection) ? get_class($connection) : gettype($connection),
931
-                    is_object($connection) ? '' : ': "' . $connection . '"'
931
+                    is_object($connection) ? '' : ': "'.$connection.'"'
932 932
                 )
933 933
             );
934 934
         }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Internal/Hydration/ArrayHydrator.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
 
24 24
 use Doctrine\ORM\Mapping\ToOneAssociationMetadata;
25 25
 use PDO;
26
-use Doctrine\ORM\Mapping\ClassMetadata;
27 26
 
28 27
 /**
29 28
  * The ArrayHydrator produces a nested array "graph" that is often (not always)
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
  * <http://www.doctrine-project.org>.
18 18
  */
19 19
 
20
-declare(strict_types=1);
20
+declare(strict_types = 1);
21 21
 
22 22
 namespace Doctrine\ORM\Internal\Hydration;
23 23
 
@@ -111,10 +111,10 @@  discard block
 block discarded – undo
111 111
                 // It's a joined result
112 112
 
113 113
                 $parent = $this->rsm->parentAliasMap[$dqlAlias];
114
-                $path   = $parent . '.' . $dqlAlias;
114
+                $path   = $parent.'.'.$dqlAlias;
115 115
 
116 116
                 // missing parent data, skipping as RIGHT JOIN hydration is not supported.
117
-                if ( ! isset($nonemptyComponents[$parent]) ) {
117
+                if ( ! isset($nonemptyComponents[$parent])) {
118 118
                     continue;
119 119
                 }
120 120
 
@@ -123,9 +123,9 @@  discard block
 block discarded – undo
123 123
                 if ($this->rsm->isMixed && isset($this->rootAliases[$parent])) {
124 124
                     $first = reset($this->resultPointers);
125 125
                     // TODO: Exception if $key === null ?
126
-                    $baseElement =& $this->resultPointers[$parent][key($first)];
126
+                    $baseElement = & $this->resultPointers[$parent][key($first)];
127 127
                 } else if (isset($this->resultPointers[$parent])) {
128
-                    $baseElement =& $this->resultPointers[$parent];
128
+                    $baseElement = & $this->resultPointers[$parent];
129 129
                 } else {
130 130
                     unset($this->resultPointers[$dqlAlias]); // Ticket #1228
131 131
 
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
                 $relation      = $parentClass->getProperty($relationAlias);
138 138
 
139 139
                 // Check the type of the relation (many or single-valued)
140
-                if (! $relation instanceof ToOneAssociationMetadata) {
140
+                if ( ! $relation instanceof ToOneAssociationMetadata) {
141 141
                     $oneToOne = false;
142 142
 
143 143
                     if ( ! isset($baseElement[$relationAlias])) {
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
                     }
177 177
                 }
178 178
 
179
-                $coll =& $baseElement[$relationAlias];
179
+                $coll = & $baseElement[$relationAlias];
180 180
 
181 181
                 if (is_array($coll)) {
182 182
                     $this->updateResultPointer($coll, $index, $dqlAlias, $oneToOne);
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
                 $entityKey = $this->rsm->entityMappings[$dqlAlias] ?: 0;
189 189
 
190 190
                 // if this row has a NULL value for the root result id then make it a null result.
191
-                if ( ! isset($nonemptyComponents[$dqlAlias]) ) {
191
+                if ( ! isset($nonemptyComponents[$dqlAlias])) {
192 192
                     $result[] = $this->rsm->isMixed
193 193
                         ? [$entityKey => null]
194 194
                         : null;
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
                 $resultKey = $this->resultCounter - 1;
250 250
             }
251 251
 
252
-            $scalarCount = (isset($rowData['scalars'])? count($rowData['scalars']): 0);
252
+            $scalarCount = (isset($rowData['scalars']) ? count($rowData['scalars']) : 0);
253 253
 
254 254
             foreach ($rowData['newObjects'] as $objIndex => $newObject) {
255 255
                 $class  = $newObject['class'];
@@ -287,13 +287,13 @@  discard block
 block discarded – undo
287 287
         }
288 288
 
289 289
         if ($oneToOne) {
290
-            $this->resultPointers[$dqlAlias] =& $coll;
290
+            $this->resultPointers[$dqlAlias] = & $coll;
291 291
 
292 292
             return;
293 293
         }
294 294
 
295 295
         if ($index !== false) {
296
-            $this->resultPointers[$dqlAlias] =& $coll[$index];
296
+            $this->resultPointers[$dqlAlias] = & $coll[$index];
297 297
 
298 298
             return;
299 299
         }
@@ -303,7 +303,7 @@  discard block
 block discarded – undo
303 303
         }
304 304
 
305 305
         end($coll);
306
-        $this->resultPointers[$dqlAlias] =& $coll[key($coll)];
306
+        $this->resultPointers[$dqlAlias] = & $coll[key($coll)];
307 307
 
308 308
         return;
309 309
     }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Internal/Hydration/ObjectHydrator.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,6 @@
 block discarded – undo
25 25
 use Doctrine\ORM\Mapping\ToManyAssociationMetadata;
26 26
 use Doctrine\ORM\Mapping\ToOneAssociationMetadata;
27 27
 use PDO;
28
-use Doctrine\Common\Collections\ArrayCollection;
29
-use Doctrine\ORM\Event\PostLoadEventDispatcher;
30 28
 use Doctrine\ORM\Mapping\ClassMetadata;
31 29
 use Doctrine\ORM\PersistentCollection;
32 30
 use Doctrine\ORM\Proxy\Proxy;
Please login to merge, or discard this patch.
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
  * <http://www.doctrine-project.org>.
18 18
  */
19 19
 
20
-declare(strict_types=1);
20
+declare(strict_types = 1);
21 21
 
22 22
 namespace Doctrine\ORM\Internal\Hydration;
23 23
 
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      */
86 86
     protected function prepare()
87 87
     {
88
-        if (! isset($this->hints[UnitOfWork::HINT_DEFEREAGERLOAD])) {
88
+        if ( ! isset($this->hints[UnitOfWork::HINT_DEFEREAGERLOAD])) {
89 89
             $this->hints[UnitOfWork::HINT_DEFEREAGERLOAD] = true;
90 90
         }
91 91
 
@@ -95,13 +95,13 @@  discard block
 block discarded – undo
95 95
 
96 96
             // Remember which associations are "fetch joined", so that we know where to inject
97 97
             // collection stubs or proxies and where not.
98
-            if (! isset($this->rsm->relationMap[$dqlAlias])) {
98
+            if ( ! isset($this->rsm->relationMap[$dqlAlias])) {
99 99
                 continue;
100 100
             }
101 101
 
102 102
             $parent = $this->rsm->parentAliasMap[$dqlAlias];
103 103
 
104
-            if (! isset($this->rsm->aliasMap[$parent])) {
104
+            if ( ! isset($this->rsm->aliasMap[$parent])) {
105 105
                 throw HydrationException::parentObjectOfRelationNotFound($dqlAlias, $parent);
106 106
             }
107 107
 
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
                 $class        = $this->getClassMetadata($className);
128 128
                 $inverseAssoc = $class->getProperty($association->getInversedBy());
129 129
 
130
-                if (! ($inverseAssoc instanceof ToOneAssociationMetadata)) {
130
+                if ( ! ($inverseAssoc instanceof ToOneAssociationMetadata)) {
131 131
                     continue;
132 132
                 }
133 133
 
@@ -193,14 +193,14 @@  discard block
 block discarded – undo
193 193
         $value       = $association->getValue($entity);
194 194
         $oid         = spl_object_hash($entity);
195 195
 
196
-        if (! $value instanceof PersistentCollection) {
196
+        if ( ! $value instanceof PersistentCollection) {
197 197
             $value = $association->wrap($entity, $value, $this->em);
198 198
 
199 199
             $association->setValue($entity, $value);
200 200
 
201 201
             $this->uow->setOriginalEntityProperty($oid, $fieldName, $value);
202 202
 
203
-            $this->initializedCollections[$oid . $fieldName] = $value;
203
+            $this->initializedCollections[$oid.$fieldName] = $value;
204 204
         } else if (
205 205
             isset($this->hints[Query::HINT_REFRESH]) ||
206 206
             (isset($this->hints['fetched'][$parentDqlAlias][$fieldName]) && ! $value->isInitialized())
@@ -210,10 +210,10 @@  discard block
 block discarded – undo
210 210
             $value->setInitialized(true);
211 211
             $value->unwrap()->clear();
212 212
 
213
-            $this->initializedCollections[$oid . $fieldName] = $value;
213
+            $this->initializedCollections[$oid.$fieldName] = $value;
214 214
         } else {
215 215
             // Is already PersistentCollection, and DON'T REFRESH or FETCH-JOIN!
216
-            $this->existingCollections[$oid . $fieldName] = $value;
216
+            $this->existingCollections[$oid.$fieldName] = $value;
217 217
         }
218 218
 
219 219
         return $value;
@@ -331,10 +331,10 @@  discard block
 block discarded – undo
331 331
                 $parentAlias = $this->rsm->parentAliasMap[$dqlAlias];
332 332
                 // we need the $path to save into the identifier map which entities were already
333 333
                 // seen for this parent-child relationship
334
-                $path = $parentAlias . '.' . $dqlAlias;
334
+                $path = $parentAlias.'.'.$dqlAlias;
335 335
 
336 336
                 // We have a RIGHT JOIN result here. Doctrine cannot hydrate RIGHT JOIN Object-Graphs
337
-                if (! isset($nonemptyComponents[$parentAlias])) {
337
+                if ( ! isset($nonemptyComponents[$parentAlias])) {
338 338
                     // TODO: Add special case code where we hydrate the right join objects into identity map at least
339 339
                     continue;
340 340
                 }
@@ -365,15 +365,15 @@  discard block
 block discarded – undo
365 365
                 $oid = spl_object_hash($parentObject);
366 366
 
367 367
                 // Check the type of the relation (many or single-valued)
368
-                if (! ($association instanceof ToOneAssociationMetadata)) {
368
+                if ( ! ($association instanceof ToOneAssociationMetadata)) {
369 369
                     // PATH A: Collection-valued association
370 370
                     $reflFieldValue = $association->getValue($parentObject);
371 371
 
372 372
                     if (isset($nonemptyComponents[$dqlAlias])) {
373
-                        $collKey = $oid . $relationField;
373
+                        $collKey = $oid.$relationField;
374 374
                         if (isset($this->initializedCollections[$collKey])) {
375 375
                             $reflFieldValue = $this->initializedCollections[$collKey];
376
-                        } else if (! isset($this->existingCollections[$collKey])) {
376
+                        } else if ( ! isset($this->existingCollections[$collKey])) {
377 377
                             $reflFieldValue = $this->initRelatedCollection($parentObject, $parentClass, $relationField, $parentAlias);
378 378
                         }
379 379
 
@@ -381,7 +381,7 @@  discard block
 block discarded – undo
381 381
                         $index          = $indexExists ? $this->identifierMap[$path][$id[$parentAlias]][$id[$dqlAlias]] : false;
382 382
                         $indexIsValid   = $index !== false ? isset($reflFieldValue[$index]) : false;
383 383
 
384
-                        if (! $indexExists || ! $indexIsValid) {
384
+                        if ( ! $indexExists || ! $indexIsValid) {
385 385
                             if (isset($this->existingCollections[$collKey])) {
386 386
                                 // Collection exists, only look for the element in the identity map.
387 387
                                 if ($element = $this->getEntityFromIdentityMap($entityName, $data)) {
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
                     // PATH B: Single-valued association
418 418
                     $reflFieldValue = $association->getValue($parentObject);
419 419
 
420
-                    if (! $reflFieldValue || isset($this->hints[Query::HINT_REFRESH]) ||
420
+                    if ( ! $reflFieldValue || isset($this->hints[Query::HINT_REFRESH]) ||
421 421
                         ($reflFieldValue instanceof Proxy && ! $reflFieldValue->__isInitialized())) {
422 422
                         // we only need to take action if this value is null,
423 423
                         // we refresh the entity or its an uninitialized proxy.
@@ -478,7 +478,7 @@  discard block
 block discarded – undo
478 478
                 $entityKey = $this->rsm->entityMappings[$dqlAlias] ?: 0;
479 479
 
480 480
                 // if this row has a NULL value for the root result id then make it a null result.
481
-                if ( ! isset($nonemptyComponents[$dqlAlias]) ) {
481
+                if ( ! isset($nonemptyComponents[$dqlAlias])) {
482 482
                     if ($this->rsm->isMixed) {
483 483
                         $result[] = [$entityKey => null];
484 484
                     } else {
@@ -534,13 +534,13 @@  discard block
 block discarded – undo
534 534
             }
535 535
         }
536 536
 
537
-        if ( ! isset($resultKey) ) {
537
+        if ( ! isset($resultKey)) {
538 538
             $this->resultCounter++;
539 539
         }
540 540
 
541 541
         // Append scalar values to mixed result sets
542 542
         if (isset($rowData['scalars'])) {
543
-            if ( ! isset($resultKey) ) {
543
+            if ( ! isset($resultKey)) {
544 544
                 $resultKey = (isset($this->rsm->indexByMap['scalars']))
545 545
                     ? $row[$this->rsm->indexByMap['scalars']]
546 546
                     : $this->resultCounter - 1;
@@ -553,19 +553,19 @@  discard block
 block discarded – undo
553 553
 
554 554
         // Append new object to mixed result sets
555 555
         if (isset($rowData['newObjects'])) {
556
-            if ( ! isset($resultKey) ) {
556
+            if ( ! isset($resultKey)) {
557 557
                 $resultKey = $this->resultCounter - 1;
558 558
             }
559 559
 
560 560
 
561
-            $scalarCount = (isset($rowData['scalars'])? count($rowData['scalars']): 0);
561
+            $scalarCount = (isset($rowData['scalars']) ? count($rowData['scalars']) : 0);
562 562
 
563 563
             foreach ($rowData['newObjects'] as $objIndex => $newObject) {
564 564
                 $class  = $newObject['class'];
565 565
                 $args   = $newObject['args'];
566 566
                 $obj    = $class->newInstanceArgs($args);
567 567
 
568
-                if ($scalarCount == 0 && count($rowData['newObjects']) == 1 ) {
568
+                if ($scalarCount == 0 && count($rowData['newObjects']) == 1) {
569 569
                     $result[$resultKey] = $obj;
570 570
 
571 571
                     continue;
Please login to merge, or discard this patch.