Completed
Push — master ( f4c848...d31188 )
by Jonathan
24s queued 17s
created
lib/Doctrine/ORM/ORMInvalidArgumentException.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public static function scheduleInsertForManagedEntity($entity)
31 31
     {
32
-        return new self('A managed+dirty entity ' . self::objToStr($entity) . ' can not be scheduled for insertion.');
32
+        return new self('A managed+dirty entity '.self::objToStr($entity).' can not be scheduled for insertion.');
33 33
     }
34 34
 
35 35
     /**
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      */
40 40
     public static function scheduleInsertForRemovedEntity($entity)
41 41
     {
42
-        return new self('Removed entity ' . self::objToStr($entity) . ' can not be scheduled for insertion.');
42
+        return new self('Removed entity '.self::objToStr($entity).' can not be scheduled for insertion.');
43 43
     }
44 44
 
45 45
     /**
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      */
50 50
     public static function scheduleInsertTwice($entity)
51 51
     {
52
-        return new self('Entity ' . self::objToStr($entity) . ' can not be scheduled for insertion twice.');
52
+        return new self('Entity '.self::objToStr($entity).' can not be scheduled for insertion twice.');
53 53
     }
54 54
 
55 55
     /**
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     public static function entityWithoutIdentity($className, $entity)
62 62
     {
63 63
         return new self(
64
-            "The given entity of type '" . $className . "' (" . self::objToStr($entity) . ') has no identity/no ' .
64
+            "The given entity of type '".$className."' (".self::objToStr($entity).') has no identity/no '.
65 65
             'id values set. It cannot be added to the identity map.'
66 66
         );
67 67
     }
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      */
74 74
     public static function readOnlyRequiresManagedEntity($entity)
75 75
     {
76
-        return new self('Only managed entities can be marked or checked as read only. But ' . self::objToStr($entity) . ' is not');
76
+        return new self('Only managed entities can be marked or checked as read only. But '.self::objToStr($entity).' is not');
77 77
     }
78 78
 
79 79
     /**
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     public static function newEntitiesFoundThroughRelationships($newEntitiesWithAssociations)
85 85
     {
86 86
         $errorMessages = array_map(
87
-            function (array $newEntityWithAssociation) : string {
87
+            function(array $newEntityWithAssociation) : string {
88 88
                 [$associationMetadata, $entity] = $newEntityWithAssociation;
89 89
 
90 90
                 return self::newEntityFoundThroughRelationshipMessage($associationMetadata, $entity);
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
      */
155 155
     public static function entityNotManaged($entity)
156 156
     {
157
-        return new self('Entity ' . self::objToStr($entity) . ' is not managed. An entity is managed if its fetched ' .
157
+        return new self('Entity '.self::objToStr($entity).' is not managed. An entity is managed if its fetched '.
158 158
             'from the database or registered as new through EntityManager#persist');
159 159
     }
160 160
 
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
      */
167 167
     public static function entityHasNoIdentity($entity, $operation)
168 168
     {
169
-        return new self('Entity has no identity, therefore ' . $operation . ' cannot be performed. ' . self::objToStr($entity));
169
+        return new self('Entity has no identity, therefore '.$operation.' cannot be performed. '.self::objToStr($entity));
170 170
     }
171 171
 
172 172
     /**
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
      */
178 178
     public static function entityIsRemoved($entity, $operation)
179 179
     {
180
-        return new self('Entity is removed, therefore ' . $operation . ' cannot be performed. ' . self::objToStr($entity));
180
+        return new self('Entity is removed, therefore '.$operation.' cannot be performed. '.self::objToStr($entity));
181 181
     }
182 182
 
183 183
     /**
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
      */
189 189
     public static function detachedEntityCannot($entity, $operation)
190 190
     {
191
-        return new self('Detached entity ' . self::objToStr($entity) . ' cannot be ' . $operation);
191
+        return new self('Detached entity '.self::objToStr($entity).' cannot be '.$operation);
192 192
     }
193 193
 
194 194
     /**
@@ -200,8 +200,8 @@  discard block
 block discarded – undo
200 200
      */
201 201
     public static function invalidObject($context, $given, $parameterIndex = 1)
202 202
     {
203
-        return new self($context . ' expects parameter ' . $parameterIndex .
204
-            ' to be an entity object, ' . gettype($given) . ' given.');
203
+        return new self($context.' expects parameter '.$parameterIndex.
204
+            ' to be an entity object, '.gettype($given).' given.');
205 205
     }
206 206
 
207 207
     /**
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
      */
210 210
     public static function invalidCompositeIdentifier()
211 211
     {
212
-        return new self('Binding an entity with a composite primary key to a query is not supported. ' .
212
+        return new self('Binding an entity with a composite primary key to a query is not supported. '.
213 213
             'You should split the parameter into the explicit fields and bind them separately.');
214 214
     }
215 215
 
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
      */
247 247
     private static function objToStr($obj) : string
248 248
     {
249
-        return method_exists($obj, '__toString') ? (string) $obj : get_class($obj) . '@' . spl_object_id($obj);
249
+        return method_exists($obj, '__toString') ? (string) $obj : get_class($obj).'@'.spl_object_id($obj);
250 250
     }
251 251
 
252 252
     /**
@@ -255,15 +255,15 @@  discard block
 block discarded – undo
255 255
     private static function newEntityFoundThroughRelationshipMessage(AssociationMetadata $association, $entity) : string
256 256
     {
257 257
         return 'A new entity was found through the relationship \''
258
-            . $association->getSourceEntity() . '#' . $association->getName() . '\' that was not'
259
-            . ' configured to cascade persist operations for entity: ' . self::objToStr($entity) . '.'
258
+            . $association->getSourceEntity().'#'.$association->getName().'\' that was not'
259
+            . ' configured to cascade persist operations for entity: '.self::objToStr($entity).'.'
260 260
             . ' To solve this issue: Either explicitly call EntityManager#persist()'
261 261
             . ' on this unknown entity or configure cascade persist'
262 262
             . ' this association in the mapping for example @ManyToOne(..,cascade={"persist"}).'
263 263
             . (method_exists($entity, '__toString')
264 264
                 ? ''
265 265
                 : ' If you cannot find out which entity causes the problem implement \''
266
-                . $association->getTargetEntity() . '#__toString()\' to get a clue.'
266
+                . $association->getTargetEntity().'#__toString()\' to get a clue.'
267 267
             );
268 268
     }
269 269
 }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
 
255 255
         // Check query cache.
256 256
         $queryCache = $this->getQueryCacheDriver();
257
-        if (! ($this->useQueryCache && $queryCache)) {
257
+        if ( ! ($this->useQueryCache && $queryCache)) {
258 258
             $parser = new Parser($this);
259 259
 
260 260
             $this->parserResult = $parser->parse();
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
             $value = $parameter->getValue();
392 392
             $rsm   = $this->getResultSetMapping();
393 393
 
394
-            if (! isset($paramMappings[$key])) {
394
+            if ( ! isset($paramMappings[$key])) {
395 395
                 throw QueryException::unknownParameter($key);
396 396
             }
397 397
 
@@ -699,7 +699,7 @@  discard block
 block discarded – undo
699 699
     public function setLockMode($lockMode)
700 700
     {
701 701
         if (in_array($lockMode, [LockMode::NONE, LockMode::PESSIMISTIC_READ, LockMode::PESSIMISTIC_WRITE], true)) {
702
-            if (! $this->em->getConnection()->isTransactionActive()) {
702
+            if ( ! $this->em->getConnection()->isTransactionActive()) {
703 703
                 throw TransactionRequiredException::transactionRequired();
704 704
             }
705 705
         }
@@ -740,11 +740,11 @@  discard block
 block discarded – undo
740 740
             ->getName();
741 741
 
742 742
         return md5(
743
-            $this->getDQL() . serialize($this->hints) .
744
-            '&platform=' . $platform .
745
-            ($this->em->hasFilters() ? $this->em->getFilters()->getHash() : '') .
746
-            '&firstResult=' . $this->firstResult . '&maxResult=' . $this->maxResults .
747
-            '&hydrationMode=' . $this->hydrationMode . '&types=' . serialize($this->parsedTypes) . 'DOCTRINE_QUERY_CACHE_SALT'
743
+            $this->getDQL().serialize($this->hints).
744
+            '&platform='.$platform.
745
+            ($this->em->hasFilters() ? $this->em->getFilters()->getHash() : '').
746
+            '&firstResult='.$this->firstResult.'&maxResult='.$this->maxResults.
747
+            '&hydrationMode='.$this->hydrationMode.'&types='.serialize($this->parsedTypes).'DOCTRINE_QUERY_CACHE_SALT'
748 748
         );
749 749
     }
750 750
 
@@ -753,7 +753,7 @@  discard block
 block discarded – undo
753 753
      */
754 754
     protected function getHash()
755 755
     {
756
-        return sha1(parent::getHash() . '-' . $this->firstResult . '-' . $this->maxResults);
756
+        return sha1(parent::getHash().'-'.$this->firstResult.'-'.$this->maxResults);
757 757
     }
758 758
 
759 759
     /**
Please login to merge, or discard this patch.
lib/Doctrine/ORM/AbstractQuery.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
     public function getParameter($key)
301 301
     {
302 302
         $filteredParameters = $this->parameters->filter(
303
-            function (Query\Parameter $parameter) use ($key) : bool {
303
+            function(Query\Parameter $parameter) use ($key) : bool {
304 304
                 $parameterName = $parameter->getName();
305 305
 
306 306
                 return $key === $parameterName || (string) $key === (string) $parameterName;
@@ -716,7 +716,7 @@  discard block
 block discarded – undo
716 716
             return null;
717 717
         }
718 718
 
719
-        if (! is_array($result)) {
719
+        if ( ! is_array($result)) {
720 720
             return $result;
721 721
         }
722 722
 
@@ -750,7 +750,7 @@  discard block
 block discarded – undo
750 750
             throw new NoResultException();
751 751
         }
752 752
 
753
-        if (! is_array($result)) {
753
+        if ( ! is_array($result)) {
754 754
             return $result;
755 755
         }
756 756
 
@@ -840,7 +840,7 @@  discard block
 block discarded – undo
840 840
             $this->setHydrationMode($hydrationMode);
841 841
         }
842 842
 
843
-        if (! empty($parameters)) {
843
+        if ( ! empty($parameters)) {
844 844
             $this->setParameters($parameters);
845 845
         }
846 846
 
@@ -879,11 +879,11 @@  discard block
 block discarded – undo
879 879
             $this->setHydrationMode($hydrationMode);
880 880
         }
881 881
 
882
-        if (! empty($parameters)) {
882
+        if ( ! empty($parameters)) {
883 883
             $this->setParameters($parameters);
884 884
         }
885 885
 
886
-        $setCacheEntry = function () {
886
+        $setCacheEntry = function() {
887 887
         };
888 888
 
889 889
         if ($this->hydrationCacheProfile !== null) {
@@ -897,11 +897,11 @@  discard block
 block discarded – undo
897 897
                 return $result[$realCacheKey];
898 898
             }
899 899
 
900
-            if (! $result) {
900
+            if ( ! $result) {
901 901
                 $result = [];
902 902
             }
903 903
 
904
-            $setCacheEntry = function ($data) use ($cache, $result, $cacheKey, $realCacheKey, $queryCacheProfile) {
904
+            $setCacheEntry = function($data) use ($cache, $result, $cacheKey, $realCacheKey, $queryCacheProfile) {
905 905
                 $result[$realCacheKey] = $data;
906 906
 
907 907
                 $cache->save($cacheKey, $result, $queryCacheProfile->getLifetime());
@@ -1063,7 +1063,7 @@  discard block
 block discarded – undo
1063 1063
     {
1064 1064
         $query  = $this->getSQL();
1065 1065
         $hints  = $this->getHints();
1066
-        $params = array_map(function (Parameter $parameter) {
1066
+        $params = array_map(function(Parameter $parameter) {
1067 1067
             $value = $parameter->getValue();
1068 1068
 
1069 1069
             // Small optimization
@@ -1077,6 +1077,6 @@  discard block
 block discarded – undo
1077 1077
 
1078 1078
         ksort($hints);
1079 1079
 
1080
-        return sha1($query . '-' . serialize($params) . '-' . serialize($hints));
1080
+        return sha1($query.'-'.serialize($params).'-'.serialize($hints));
1081 1081
     }
1082 1082
 }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Annotation/DoctrineAnnotations.php 1 patch
Spacing   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -2,44 +2,44 @@
 block discarded – undo
2 2
 
3 3
 declare(strict_types=1);
4 4
 
5
-require_once __DIR__ . '/Annotation.php';
6
-require_once __DIR__ . '/AssociationOverride.php';
7
-require_once __DIR__ . '/AssociationOverrides.php';
8
-require_once __DIR__ . '/AttributeOverride.php';
9
-require_once __DIR__ . '/AttributeOverrides.php';
10
-require_once __DIR__ . '/Cache.php';
11
-require_once __DIR__ . '/ChangeTrackingPolicy.php';
12
-require_once __DIR__ . '/Column.php';
13
-require_once __DIR__ . '/CustomIdGenerator.php';
14
-require_once __DIR__ . '/DiscriminatorColumn.php';
15
-require_once __DIR__ . '/DiscriminatorMap.php';
16
-require_once __DIR__ . '/Embeddable.php';
17
-require_once __DIR__ . '/Embedded.php';
18
-require_once __DIR__ . '/Entity.php';
19
-require_once __DIR__ . '/EntityListeners.php';
20
-require_once __DIR__ . '/GeneratedValue.php';
21
-require_once __DIR__ . '/HasLifecycleCallbacks.php';
22
-require_once __DIR__ . '/Id.php';
23
-require_once __DIR__ . '/Index.php';
24
-require_once __DIR__ . '/InheritanceType.php';
25
-require_once __DIR__ . '/JoinColumn.php';
26
-require_once __DIR__ . '/JoinColumns.php';
27
-require_once __DIR__ . '/JoinTable.php';
28
-require_once __DIR__ . '/ManyToMany.php';
29
-require_once __DIR__ . '/ManyToOne.php';
30
-require_once __DIR__ . '/MappedSuperclass.php';
31
-require_once __DIR__ . '/OneToMany.php';
32
-require_once __DIR__ . '/OneToOne.php';
33
-require_once __DIR__ . '/OrderBy.php';
34
-require_once __DIR__ . '/PrePersist.php';
35
-require_once __DIR__ . '/PostLoad.php';
36
-require_once __DIR__ . '/PostPersist.php';
37
-require_once __DIR__ . '/PostRemove.php';
38
-require_once __DIR__ . '/PostUpdate.php';
39
-require_once __DIR__ . '/PreFlush.php';
40
-require_once __DIR__ . '/PreRemove.php';
41
-require_once __DIR__ . '/PreUpdate.php';
42
-require_once __DIR__ . '/SequenceGenerator.php';
43
-require_once __DIR__ . '/Table.php';
44
-require_once __DIR__ . '/UniqueConstraint.php';
45
-require_once __DIR__ . '/Version.php';
5
+require_once __DIR__.'/Annotation.php';
6
+require_once __DIR__.'/AssociationOverride.php';
7
+require_once __DIR__.'/AssociationOverrides.php';
8
+require_once __DIR__.'/AttributeOverride.php';
9
+require_once __DIR__.'/AttributeOverrides.php';
10
+require_once __DIR__.'/Cache.php';
11
+require_once __DIR__.'/ChangeTrackingPolicy.php';
12
+require_once __DIR__.'/Column.php';
13
+require_once __DIR__.'/CustomIdGenerator.php';
14
+require_once __DIR__.'/DiscriminatorColumn.php';
15
+require_once __DIR__.'/DiscriminatorMap.php';
16
+require_once __DIR__.'/Embeddable.php';
17
+require_once __DIR__.'/Embedded.php';
18
+require_once __DIR__.'/Entity.php';
19
+require_once __DIR__.'/EntityListeners.php';
20
+require_once __DIR__.'/GeneratedValue.php';
21
+require_once __DIR__.'/HasLifecycleCallbacks.php';
22
+require_once __DIR__.'/Id.php';
23
+require_once __DIR__.'/Index.php';
24
+require_once __DIR__.'/InheritanceType.php';
25
+require_once __DIR__.'/JoinColumn.php';
26
+require_once __DIR__.'/JoinColumns.php';
27
+require_once __DIR__.'/JoinTable.php';
28
+require_once __DIR__.'/ManyToMany.php';
29
+require_once __DIR__.'/ManyToOne.php';
30
+require_once __DIR__.'/MappedSuperclass.php';
31
+require_once __DIR__.'/OneToMany.php';
32
+require_once __DIR__.'/OneToOne.php';
33
+require_once __DIR__.'/OrderBy.php';
34
+require_once __DIR__.'/PrePersist.php';
35
+require_once __DIR__.'/PostLoad.php';
36
+require_once __DIR__.'/PostPersist.php';
37
+require_once __DIR__.'/PostRemove.php';
38
+require_once __DIR__.'/PostUpdate.php';
39
+require_once __DIR__.'/PreFlush.php';
40
+require_once __DIR__.'/PreRemove.php';
41
+require_once __DIR__.'/PreUpdate.php';
42
+require_once __DIR__.'/SequenceGenerator.php';
43
+require_once __DIR__.'/Table.php';
44
+require_once __DIR__.'/UniqueConstraint.php';
45
+require_once __DIR__.'/Version.php';
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Internal/Hydration/ArrayHydrator.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -85,10 +85,10 @@  discard block
 block discarded – undo
85 85
                 // It's a joined result
86 86
 
87 87
                 $parent = $this->rsm->parentAliasMap[$dqlAlias];
88
-                $path   = $parent . '.' . $dqlAlias;
88
+                $path   = $parent.'.'.$dqlAlias;
89 89
 
90 90
                 // missing parent data, skipping as RIGHT JOIN hydration is not supported.
91
-                if (! isset($nonemptyComponents[$parent])) {
91
+                if ( ! isset($nonemptyComponents[$parent])) {
92 92
                     continue;
93 93
                 }
94 94
 
@@ -97,9 +97,9 @@  discard block
 block discarded – undo
97 97
                 if ($this->rsm->isMixed && isset($this->rootAliases[$parent])) {
98 98
                     $first = reset($this->resultPointers);
99 99
                     // TODO: Exception if $key === null ?
100
-                    $baseElement =& $this->resultPointers[$parent][key($first)];
100
+                    $baseElement = & $this->resultPointers[$parent][key($first)];
101 101
                 } elseif (isset($this->resultPointers[$parent])) {
102
-                    $baseElement =& $this->resultPointers[$parent];
102
+                    $baseElement = & $this->resultPointers[$parent];
103 103
                 } else {
104 104
                     unset($this->resultPointers[$dqlAlias]); // Ticket #1228
105 105
 
@@ -111,10 +111,10 @@  discard block
 block discarded – undo
111 111
                 $relation      = $parentClass->getProperty($relationAlias);
112 112
 
113 113
                 // Check the type of the relation (many or single-valued)
114
-                if (! $relation instanceof ToOneAssociationMetadata) {
114
+                if ( ! $relation instanceof ToOneAssociationMetadata) {
115 115
                     $oneToOne = false;
116 116
 
117
-                    if (! isset($baseElement[$relationAlias])) {
117
+                    if ( ! isset($baseElement[$relationAlias])) {
118 118
                         $baseElement[$relationAlias] = [];
119 119
                     }
120 120
 
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
                         $index        = $indexExists ? $this->identifierMap[$path][$id[$parent]][$id[$dqlAlias]] : false;
124 124
                         $indexIsValid = $index !== false ? isset($baseElement[$relationAlias][$index]) : false;
125 125
 
126
-                        if (! $indexExists || ! $indexIsValid) {
126
+                        if ( ! $indexExists || ! $indexIsValid) {
127 127
                             $element = $data;
128 128
 
129 129
                             if (isset($this->rsm->indexByMap[$dqlAlias])) {
@@ -144,12 +144,12 @@  discard block
 block discarded – undo
144 144
                         ( ! isset($baseElement[$relationAlias]))
145 145
                     ) {
146 146
                         $baseElement[$relationAlias] = null;
147
-                    } elseif (! isset($baseElement[$relationAlias])) {
147
+                    } elseif ( ! isset($baseElement[$relationAlias])) {
148 148
                         $baseElement[$relationAlias] = $data;
149 149
                     }
150 150
                 }
151 151
 
152
-                $coll =& $baseElement[$relationAlias];
152
+                $coll = & $baseElement[$relationAlias];
153 153
 
154 154
                 if (is_array($coll)) {
155 155
                     $this->updateResultPointer($coll, $index, $dqlAlias, $oneToOne);
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
                 $entityKey                    = $this->rsm->entityMappings[$dqlAlias] ?: 0;
162 162
 
163 163
                 // if this row has a NULL value for the root result id then make it a null result.
164
-                if (! isset($nonemptyComponents[$dqlAlias])) {
164
+                if ( ! isset($nonemptyComponents[$dqlAlias])) {
165 165
                     $result[] = $this->rsm->isMixed
166 166
                         ? [$entityKey => null]
167 167
                         : null;
@@ -198,13 +198,13 @@  discard block
 block discarded – undo
198 198
             }
199 199
         }
200 200
 
201
-        if (! isset($resultKey)) {
201
+        if ( ! isset($resultKey)) {
202 202
             $this->resultCounter++;
203 203
         }
204 204
 
205 205
         // Append scalar values to mixed result sets
206 206
         if (isset($rowData['scalars'])) {
207
-            if (! isset($resultKey)) {
207
+            if ( ! isset($resultKey)) {
208 208
                 // this only ever happens when no object is fetched (scalar result only)
209 209
                 $resultKey = isset($this->rsm->indexByMap['scalars'])
210 210
                     ? $row[$this->rsm->indexByMap['scalars']]
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
 
219 219
         // Append new object to mixed result sets
220 220
         if (isset($rowData['newObjects'])) {
221
-            if (! isset($resultKey)) {
221
+            if ( ! isset($resultKey)) {
222 222
                 $resultKey = $this->resultCounter - 1;
223 223
             }
224 224
 
@@ -260,22 +260,22 @@  discard block
 block discarded – undo
260 260
         }
261 261
 
262 262
         if ($oneToOne) {
263
-            $this->resultPointers[$dqlAlias] =& $coll;
263
+            $this->resultPointers[$dqlAlias] = & $coll;
264 264
 
265 265
             return;
266 266
         }
267 267
 
268 268
         if ($index !== false) {
269
-            $this->resultPointers[$dqlAlias] =& $coll[$index];
269
+            $this->resultPointers[$dqlAlias] = & $coll[$index];
270 270
 
271 271
             return;
272 272
         }
273 273
 
274
-        if (! $coll) {
274
+        if ( ! $coll) {
275 275
             return;
276 276
         }
277 277
 
278 278
         end($coll);
279
-        $this->resultPointers[$dqlAlias] =& $coll[key($coll)];
279
+        $this->resultPointers[$dqlAlias] = & $coll[key($coll)];
280 280
     }
281 281
 }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Internal/Hydration/ObjectHydrator.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      */
54 54
     protected function prepare()
55 55
     {
56
-        if (! isset($this->hints[UnitOfWork::HINT_DEFEREAGERLOAD])) {
56
+        if ( ! isset($this->hints[UnitOfWork::HINT_DEFEREAGERLOAD])) {
57 57
             $this->hints[UnitOfWork::HINT_DEFEREAGERLOAD] = true;
58 58
         }
59 59
 
@@ -63,13 +63,13 @@  discard block
 block discarded – undo
63 63
 
64 64
             // Remember which associations are "fetch joined", so that we know where to inject
65 65
             // collection stubs or proxies and where not.
66
-            if (! isset($this->rsm->relationMap[$dqlAlias])) {
66
+            if ( ! isset($this->rsm->relationMap[$dqlAlias])) {
67 67
                 continue;
68 68
             }
69 69
 
70 70
             $parent = $this->rsm->parentAliasMap[$dqlAlias];
71 71
 
72
-            if (! isset($this->rsm->aliasMap[$parent])) {
72
+            if ( ! isset($this->rsm->aliasMap[$parent])) {
73 73
                 throw HydrationException::parentObjectOfRelationNotFound($dqlAlias, $parent);
74 74
             }
75 75
 
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
                 $class        = $this->getClassMetadata($className);
96 96
                 $inverseAssoc = $class->getProperty($association->getInversedBy());
97 97
 
98
-                if (! ($inverseAssoc instanceof ToOneAssociationMetadata)) {
98
+                if ( ! ($inverseAssoc instanceof ToOneAssociationMetadata)) {
99 99
                     continue;
100 100
                 }
101 101
 
@@ -161,14 +161,14 @@  discard block
 block discarded – undo
161 161
         $value       = $association->getValue($entity);
162 162
         $oid         = spl_object_id($entity);
163 163
 
164
-        if (! $value instanceof PersistentCollection) {
164
+        if ( ! $value instanceof PersistentCollection) {
165 165
             $value = $association->wrap($entity, $value, $this->em);
166 166
 
167 167
             $association->setValue($entity, $value);
168 168
 
169 169
             $this->uow->setOriginalEntityProperty($oid, $fieldName, $value);
170 170
 
171
-            $this->initializedCollections[$oid . $fieldName] = $value;
171
+            $this->initializedCollections[$oid.$fieldName] = $value;
172 172
         } elseif (isset($this->hints[Query::HINT_REFRESH]) ||
173 173
             (isset($this->hints['fetched'][$parentDqlAlias][$fieldName]) && ! $value->isInitialized())
174 174
         ) {
@@ -177,10 +177,10 @@  discard block
 block discarded – undo
177 177
             $value->setInitialized(true);
178 178
             $value->unwrap()->clear();
179 179
 
180
-            $this->initializedCollections[$oid . $fieldName] = $value;
180
+            $this->initializedCollections[$oid.$fieldName] = $value;
181 181
         } else {
182 182
             // Is already PersistentCollection, and DON'T REFRESH or FETCH-JOIN!
183
-            $this->existingCollections[$oid . $fieldName] = $value;
183
+            $this->existingCollections[$oid.$fieldName] = $value;
184 184
         }
185 185
 
186 186
         return $value;
@@ -203,13 +203,13 @@  discard block
 block discarded – undo
203 203
         if (isset($this->rsm->discriminatorColumns[$dqlAlias])) {
204 204
             $fieldName = $this->rsm->discriminatorColumns[$dqlAlias];
205 205
 
206
-            if (! isset($this->rsm->metaMappings[$fieldName])) {
206
+            if ( ! isset($this->rsm->metaMappings[$fieldName])) {
207 207
                 throw HydrationException::missingDiscriminatorMetaMappingColumn($className, $fieldName, $dqlAlias);
208 208
             }
209 209
 
210 210
             $discrColumn = $this->rsm->metaMappings[$fieldName];
211 211
 
212
-            if (! isset($data[$discrColumn])) {
212
+            if ( ! isset($data[$discrColumn])) {
213 213
                 throw HydrationException::missingDiscriminatorColumn($className, $discrColumn, $dqlAlias);
214 214
             }
215 215
 
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
             $discrMap           = $this->metadataCache[$className]->discriminatorMap;
221 221
             $discriminatorValue = (string) $data[$discrColumn];
222 222
 
223
-            if (! isset($discrMap[$discriminatorValue])) {
223
+            if ( ! isset($discrMap[$discriminatorValue])) {
224 224
                 throw HydrationException::invalidDiscriminatorValue($discriminatorValue, array_keys($discrMap));
225 225
             }
226 226
 
@@ -296,10 +296,10 @@  discard block
 block discarded – undo
296 296
                 $parentAlias = $this->rsm->parentAliasMap[$dqlAlias];
297 297
                 // we need the $path to save into the identifier map which entities were already
298 298
                 // seen for this parent-child relationship
299
-                $path = $parentAlias . '.' . $dqlAlias;
299
+                $path = $parentAlias.'.'.$dqlAlias;
300 300
 
301 301
                 // We have a RIGHT JOIN result here. Doctrine cannot hydrate RIGHT JOIN Object-Graphs
302
-                if (! isset($nonemptyComponents[$parentAlias])) {
302
+                if ( ! isset($nonemptyComponents[$parentAlias])) {
303 303
                     // TODO: Add special case code where we hydrate the right join objects into identity map at least
304 304
                     continue;
305 305
                 }
@@ -330,15 +330,15 @@  discard block
 block discarded – undo
330 330
                 $oid = spl_object_id($parentObject);
331 331
 
332 332
                 // Check the type of the relation (many or single-valued)
333
-                if (! ($association instanceof ToOneAssociationMetadata)) {
333
+                if ( ! ($association instanceof ToOneAssociationMetadata)) {
334 334
                     // PATH A: Collection-valued association
335 335
                     $reflFieldValue = $association->getValue($parentObject);
336 336
 
337 337
                     if (isset($nonemptyComponents[$dqlAlias])) {
338
-                        $collKey = $oid . $relationField;
338
+                        $collKey = $oid.$relationField;
339 339
                         if (isset($this->initializedCollections[$collKey])) {
340 340
                             $reflFieldValue = $this->initializedCollections[$collKey];
341
-                        } elseif (! isset($this->existingCollections[$collKey])) {
341
+                        } elseif ( ! isset($this->existingCollections[$collKey])) {
342 342
                             $reflFieldValue = $this->initRelatedCollection($parentObject, $parentClass, $relationField, $parentAlias);
343 343
                         }
344 344
 
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
                         $index        = $indexExists ? $this->identifierMap[$path][$id[$parentAlias]][$id[$dqlAlias]] : false;
347 347
                         $indexIsValid = $index !== false ? isset($reflFieldValue[$index]) : false;
348 348
 
349
-                        if (! $indexExists || ! $indexIsValid) {
349
+                        if ( ! $indexExists || ! $indexIsValid) {
350 350
                             if (isset($this->existingCollections[$collKey])) {
351 351
                                 $element = $this->getEntityFromIdentityMap($entityName, $data);
352 352
 
@@ -375,7 +375,7 @@  discard block
 block discarded – undo
375 375
                             // Update result pointer
376 376
                             $this->resultPointers[$dqlAlias] = $reflFieldValue[$index];
377 377
                         }
378
-                    } elseif (! $reflFieldValue) {
378
+                    } elseif ( ! $reflFieldValue) {
379 379
                         $reflFieldValue = $this->initRelatedCollection($parentObject, $parentClass, $relationField, $parentAlias);
380 380
                     } elseif ($reflFieldValue instanceof PersistentCollection && $reflFieldValue->isInitialized() === false) {
381 381
                         $reflFieldValue->setInitialized(true);
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
                     // PATH B: Single-valued association
385 385
                     $reflFieldValue = $association->getValue($parentObject);
386 386
 
387
-                    if (! $reflFieldValue || isset($this->hints[Query::HINT_REFRESH]) ||
387
+                    if ( ! $reflFieldValue || isset($this->hints[Query::HINT_REFRESH]) ||
388 388
                         ($reflFieldValue instanceof GhostObjectInterface && ! $reflFieldValue->isProxyInitialized())) {
389 389
                         // we only need to take action if this value is null,
390 390
                         // we refresh the entity or its an uninitialized proxy.
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
                 $entityKey                    = $this->rsm->entityMappings[$dqlAlias] ?: 0;
446 446
 
447 447
                 // if this row has a NULL value for the root result id then make it a null result.
448
-                if (! isset($nonemptyComponents[$dqlAlias])) {
448
+                if ( ! isset($nonemptyComponents[$dqlAlias])) {
449 449
                     if ($this->rsm->isMixed) {
450 450
                         $result[] = [$entityKey => null];
451 451
                     } else {
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
                 }
458 458
 
459 459
                 // check for existing result from the iterations before
460
-                if (! isset($this->identifierMap[$dqlAlias][$id[$dqlAlias]])) {
460
+                if ( ! isset($this->identifierMap[$dqlAlias][$id[$dqlAlias]])) {
461 461
                     $element = $this->getEntity($data, $dqlAlias);
462 462
 
463 463
                     if ($this->rsm->isMixed) {
@@ -500,13 +500,13 @@  discard block
 block discarded – undo
500 500
             }
501 501
         }
502 502
 
503
-        if (! isset($resultKey)) {
503
+        if ( ! isset($resultKey)) {
504 504
             $this->resultCounter++;
505 505
         }
506 506
 
507 507
         // Append scalar values to mixed result sets
508 508
         if (isset($rowData['scalars'])) {
509
-            if (! isset($resultKey)) {
509
+            if ( ! isset($resultKey)) {
510 510
                 $resultKey = (isset($this->rsm->indexByMap['scalars']))
511 511
                     ? $row[$this->rsm->indexByMap['scalars']]
512 512
                     : $this->resultCounter - 1;
@@ -519,7 +519,7 @@  discard block
 block discarded – undo
519 519
 
520 520
         // Append new object to mixed result sets
521 521
         if (isset($rowData['newObjects'])) {
522
-            if (! isset($resultKey)) {
522
+            if ( ! isset($resultKey)) {
523 523
                 $resultKey = $this->resultCounter - 1;
524 524
             }
525 525
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Internal/Hydration/IterableResult.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,6 +77,6 @@
 block discarded – undo
77 77
      */
78 78
     public function valid()
79 79
     {
80
-        return $this->current!==false;
80
+        return $this->current !== false;
81 81
     }
82 82
 }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Internal/Hydration/HydrationException.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,9 +40,9 @@
 block discarded – undo
40 40
      */
41 41
     public static function emptyDiscriminatorValue($dqlAlias)
42 42
     {
43
-        return new self("The DQL alias '" . $dqlAlias . "' contains an entity " .
44
-            'of an inheritance hierarchy with an empty discriminator value. This means ' .
45
-            'that the database contains inconsistent data with an empty ' .
43
+        return new self("The DQL alias '".$dqlAlias."' contains an entity ".
44
+            'of an inheritance hierarchy with an empty discriminator value. This means '.
45
+            'that the database contains inconsistent data with an empty '.
46 46
             'discriminator value in a table row.');
47 47
     }
48 48
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Internal/Hydration/SimpleObjectHydrator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
                 $discrColumnName = $metaMappingDiscrColumnName;
84 84
             }
85 85
 
86
-            if (! isset($sqlResult[$discrColumnName])) {
86
+            if ( ! isset($sqlResult[$discrColumnName])) {
87 87
                 throw HydrationException::missingDiscriminatorColumn($entityName, $discrColumnName, key($this->rsm->aliasMap));
88 88
             }
89 89
 
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
             $discrMap = $this->class->discriminatorMap;
95 95
 
96
-            if (! isset($discrMap[$sqlResult[$discrColumnName]])) {
96
+            if ( ! isset($discrMap[$sqlResult[$discrColumnName]])) {
97 97
                 throw HydrationException::invalidDiscriminatorValue($sqlResult[$discrColumnName], array_keys($discrMap));
98 98
             }
99 99
 
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 
111 111
             $cacheKeyInfo = $this->hydrateColumnInfo($column);
112 112
 
113
-            if (! $cacheKeyInfo) {
113
+            if ( ! $cacheKeyInfo) {
114 114
                 continue;
115 115
             }
116 116
 
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
             $fieldName = $cacheKeyInfo['fieldName'];
127 127
 
128 128
             // Prevent overwrite in case of inherit classes using same property name (See AbstractHydrator)
129
-            if (! isset($data[$fieldName]) || ! $valueIsNull) {
129
+            if ( ! isset($data[$fieldName]) || ! $valueIsNull) {
130 130
                 $data[$fieldName] = $value;
131 131
             }
132 132
         }
Please login to merge, or discard this patch.