@@ -252,8 +252,8 @@ discard block |
||
252 | 252 | */ |
253 | 253 | private function resolveMagicCall($method, $by, array $arguments) |
254 | 254 | { |
255 | - if (! $arguments) { |
|
256 | - throw InvalidMagicMethodCall::onMissingParameter($method . $by); |
|
255 | + if ( ! $arguments) { |
|
256 | + throw InvalidMagicMethodCall::onMissingParameter($method.$by); |
|
257 | 257 | } |
258 | 258 | |
259 | 259 | $fieldName = \lcfirst(Inflector::classify($by)); |
@@ -262,7 +262,7 @@ discard block |
||
262 | 262 | throw InvalidMagicMethodCall::becauseFieldNotFoundIn( |
263 | 263 | $this->entityName, |
264 | 264 | $fieldName, |
265 | - $method . $by |
|
265 | + $method.$by |
|
266 | 266 | ); |
267 | 267 | } |
268 | 268 |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | $discrColumnName = $metaMappingDiscrColumnName; |
86 | 86 | } |
87 | 87 | |
88 | - if (! isset($sqlResult[$discrColumnName])) { |
|
88 | + if ( ! isset($sqlResult[$discrColumnName])) { |
|
89 | 89 | throw HydrationException::missingDiscriminatorColumn($entityName, $discrColumnName, \key($this->rsm->aliasMap)); |
90 | 90 | } |
91 | 91 | |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | |
96 | 96 | $discrMap = $this->class->discriminatorMap; |
97 | 97 | |
98 | - if (! isset($discrMap[$sqlResult[$discrColumnName]])) { |
|
98 | + if ( ! isset($discrMap[$sqlResult[$discrColumnName]])) { |
|
99 | 99 | throw HydrationException::invalidDiscriminatorValue($sqlResult[$discrColumnName], \array_keys($discrMap)); |
100 | 100 | } |
101 | 101 | |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | |
113 | 113 | $cacheKeyInfo = $this->hydrateColumnInfo($column); |
114 | 114 | |
115 | - if (! $cacheKeyInfo) { |
|
115 | + if ( ! $cacheKeyInfo) { |
|
116 | 116 | continue; |
117 | 117 | } |
118 | 118 | |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | $fieldName = $cacheKeyInfo['fieldName']; |
129 | 129 | |
130 | 130 | // Prevent overwrite in case of inherit classes using same property name (See AbstractHydrator) |
131 | - if (! isset($data[$fieldName]) || ! $valueIsNull) { |
|
131 | + if ( ! isset($data[$fieldName]) || ! $valueIsNull) { |
|
132 | 132 | $data[$fieldName] = $value; |
133 | 133 | } |
134 | 134 | } |
@@ -85,10 +85,10 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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])) { |
@@ -140,16 +140,16 @@ discard block |
||
140 | 140 | } else { |
141 | 141 | $oneToOne = true; |
142 | 142 | |
143 | - if (! isset($nonemptyComponents[$dqlAlias]) && |
|
143 | + if ( ! isset($nonemptyComponents[$dqlAlias]) && |
|
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 |
||
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 |
||
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 |
||
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 | |
@@ -259,22 +259,22 @@ discard block |
||
259 | 259 | } |
260 | 260 | |
261 | 261 | if ($oneToOne) { |
262 | - $this->resultPointers[$dqlAlias] =& $coll; |
|
262 | + $this->resultPointers[$dqlAlias] = & $coll; |
|
263 | 263 | |
264 | 264 | return; |
265 | 265 | } |
266 | 266 | |
267 | 267 | if ($index !== false) { |
268 | - $this->resultPointers[$dqlAlias] =& $coll[$index]; |
|
268 | + $this->resultPointers[$dqlAlias] = & $coll[$index]; |
|
269 | 269 | |
270 | 270 | return; |
271 | 271 | } |
272 | 272 | |
273 | - if (! $coll) { |
|
273 | + if ( ! $coll) { |
|
274 | 274 | return; |
275 | 275 | } |
276 | 276 | |
277 | 277 | \end($coll); |
278 | - $this->resultPointers[$dqlAlias] =& $coll[\key($coll)]; |
|
278 | + $this->resultPointers[$dqlAlias] = & $coll[\key($coll)]; |
|
279 | 279 | } |
280 | 280 | } |
@@ -53,7 +53,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
375 | 375 | // Update result pointer |
376 | 376 | $this->resultPointers[$dqlAlias] = $reflFieldValue[$index]; |
377 | 377 | } |
378 | - } elseif (! $reflFieldValue) { |
|
378 | + } elseif ( ! $reflFieldValue) { |
|
379 | 379 | $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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | { |
294 | 294 | $query = new Query($this); |
295 | 295 | |
296 | - if (! empty($dql)) { |
|
296 | + if ( ! empty($dql)) { |
|
297 | 297 | $query->setDQL($dql); |
298 | 298 | } |
299 | 299 | |
@@ -384,7 +384,7 @@ discard block |
||
384 | 384 | $this->checkLockRequirements($lockMode, $class); |
385 | 385 | } |
386 | 386 | |
387 | - if (! \is_array($id)) { |
|
387 | + if ( ! \is_array($id)) { |
|
388 | 388 | if ($class->isIdentifierComposite()) { |
389 | 389 | throw ORMInvalidArgumentException::invalidCompositeIdentifier(); |
390 | 390 | } |
@@ -405,7 +405,7 @@ discard block |
||
405 | 405 | $sortedId = []; |
406 | 406 | |
407 | 407 | foreach ($class->identifier as $identifier) { |
408 | - if (! isset($id[$identifier])) { |
|
408 | + if ( ! isset($id[$identifier])) { |
|
409 | 409 | throw MissingIdentifierField::fromFieldAndClass($identifier, $className); |
410 | 410 | } |
411 | 411 | |
@@ -422,7 +422,7 @@ discard block |
||
422 | 422 | // Check identity map first |
423 | 423 | $entity = $unitOfWork->tryGetById($sortedId, $class->getRootClassName()); |
424 | 424 | if ($entity !== false) { |
425 | - if (! ($entity instanceof $className)) { |
|
425 | + if ( ! ($entity instanceof $className)) { |
|
426 | 426 | return null; |
427 | 427 | } |
428 | 428 | |
@@ -467,7 +467,7 @@ discard block |
||
467 | 467 | $class = $this->metadataFactory->getMetadataFor(\ltrim($entityName, '\\')); |
468 | 468 | $className = $class->getClassName(); |
469 | 469 | |
470 | - if (! \is_array($id)) { |
|
470 | + if ( ! \is_array($id)) { |
|
471 | 471 | if ($class->isIdentifierComposite()) { |
472 | 472 | throw ORMInvalidArgumentException::invalidCompositeIdentifier(); |
473 | 473 | } |
@@ -492,7 +492,7 @@ discard block |
||
492 | 492 | $sortedId = []; |
493 | 493 | |
494 | 494 | foreach ($class->identifier as $identifier) { |
495 | - if (! isset($scalarId[$identifier])) { |
|
495 | + if ( ! isset($scalarId[$identifier])) { |
|
496 | 496 | throw MissingIdentifierField::fromFieldAndClass($identifier, $className); |
497 | 497 | } |
498 | 498 | |
@@ -533,7 +533,7 @@ discard block |
||
533 | 533 | $class = $this->metadataFactory->getMetadataFor(\ltrim($entityName, '\\')); |
534 | 534 | $className = $class->getClassName(); |
535 | 535 | |
536 | - if (! \is_array($id)) { |
|
536 | + if ( ! \is_array($id)) { |
|
537 | 537 | if ($class->isIdentifierComposite()) { |
538 | 538 | throw ORMInvalidArgumentException::invalidCompositeIdentifier(); |
539 | 539 | } |
@@ -554,7 +554,7 @@ discard block |
||
554 | 554 | $sortedId = []; |
555 | 555 | |
556 | 556 | foreach ($class->identifier as $identifier) { |
557 | - if (! isset($id[$identifier])) { |
|
557 | + if ( ! isset($id[$identifier])) { |
|
558 | 558 | throw MissingIdentifierField::fromFieldAndClass($identifier, $className); |
559 | 559 | } |
560 | 560 | |
@@ -626,7 +626,7 @@ discard block |
||
626 | 626 | */ |
627 | 627 | public function persist($entity) |
628 | 628 | { |
629 | - if (! \is_object($entity)) { |
|
629 | + if ( ! \is_object($entity)) { |
|
630 | 630 | throw ORMInvalidArgumentException::invalidObject('EntityManager#persist()', $entity); |
631 | 631 | } |
632 | 632 | |
@@ -648,7 +648,7 @@ discard block |
||
648 | 648 | */ |
649 | 649 | public function remove($entity) |
650 | 650 | { |
651 | - if (! \is_object($entity)) { |
|
651 | + if ( ! \is_object($entity)) { |
|
652 | 652 | throw ORMInvalidArgumentException::invalidObject('EntityManager#remove()', $entity); |
653 | 653 | } |
654 | 654 | |
@@ -668,7 +668,7 @@ discard block |
||
668 | 668 | */ |
669 | 669 | public function refresh($entity) |
670 | 670 | { |
671 | - if (! \is_object($entity)) { |
|
671 | + if ( ! \is_object($entity)) { |
|
672 | 672 | throw ORMInvalidArgumentException::invalidObject('EntityManager#refresh()', $entity); |
673 | 673 | } |
674 | 674 | |
@@ -818,7 +818,7 @@ discard block |
||
818 | 818 | */ |
819 | 819 | public static function create($connection, Configuration $config, ?EventManager $eventManager = null) |
820 | 820 | { |
821 | - if (! $config->getMetadataDriverImpl()) { |
|
821 | + if ( ! $config->getMetadataDriverImpl()) { |
|
822 | 822 | throw MissingMappingDriverImplementation::create(); |
823 | 823 | } |
824 | 824 | |
@@ -845,12 +845,12 @@ discard block |
||
845 | 845 | return DriverManager::getConnection($connection, $config, $eventManager ?: new EventManager()); |
846 | 846 | } |
847 | 847 | |
848 | - if (! $connection instanceof Connection) { |
|
848 | + if ( ! $connection instanceof Connection) { |
|
849 | 849 | throw new InvalidArgumentException( |
850 | 850 | \sprintf( |
851 | 851 | 'Invalid $connection argument of type %s given%s.', |
852 | 852 | \is_object($connection) ? \get_class($connection) : \gettype($connection), |
853 | - \is_object($connection) ? '' : ': "' . $connection . '"' |
|
853 | + \is_object($connection) ? '' : ': "'.$connection.'"' |
|
854 | 854 | ) |
855 | 855 | ); |
856 | 856 | } |
@@ -898,13 +898,13 @@ discard block |
||
898 | 898 | { |
899 | 899 | switch ($lockMode) { |
900 | 900 | case LockMode::OPTIMISTIC: |
901 | - if (! $class->isVersioned()) { |
|
901 | + if ( ! $class->isVersioned()) { |
|
902 | 902 | throw OptimisticLockException::notVersioned($class->getClassName()); |
903 | 903 | } |
904 | 904 | break; |
905 | 905 | case LockMode::PESSIMISTIC_READ: |
906 | 906 | case LockMode::PESSIMISTIC_WRITE: |
907 | - if (! $this->getConnection()->isTransactionActive()) { |
|
907 | + if ( ! $this->getConnection()->isTransactionActive()) { |
|
908 | 908 | throw TransactionRequiredException::transactionRequired(); |
909 | 909 | } |
910 | 910 | } |
@@ -191,13 +191,13 @@ discard block |
||
191 | 191 | |
192 | 192 | $innerSql = $this->getInnerSQL($AST); |
193 | 193 | $sqlIdentifier = $this->getSQLIdentifier($AST); |
194 | - $sqlAliasIdentifier = \array_map(static function ($info) { |
|
194 | + $sqlAliasIdentifier = \array_map(static function($info) { |
|
195 | 195 | return $info['alias']; |
196 | 196 | }, $sqlIdentifier); |
197 | 197 | |
198 | 198 | if ($hasOrderBy) { |
199 | - $orderGroupBy = ' GROUP BY ' . \implode(', ', $sqlAliasIdentifier); |
|
200 | - $sqlPiece = 'MIN(' . $this->walkResultVariable('dctrn_rownum') . ') AS dctrn_minrownum'; |
|
199 | + $orderGroupBy = ' GROUP BY '.\implode(', ', $sqlAliasIdentifier); |
|
200 | + $sqlPiece = 'MIN('.$this->walkResultVariable('dctrn_rownum').') AS dctrn_minrownum'; |
|
201 | 201 | |
202 | 202 | $sqlAliasIdentifier[] = $sqlPiece; |
203 | 203 | $sqlIdentifier[] = [ |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | $sql = \sprintf('SELECT DISTINCT %s FROM (%s) dctrn_result', \implode(', ', $sqlAliasIdentifier), $innerSql); |
211 | 211 | |
212 | 212 | if ($hasOrderBy) { |
213 | - $sql .= $orderGroupBy . $outerOrderBy; |
|
213 | + $sql .= $orderGroupBy.$outerOrderBy; |
|
214 | 214 | } |
215 | 215 | |
216 | 216 | // Apply the limit and offset. |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | |
255 | 255 | $innerSql = $this->getInnerSQL($AST); |
256 | 256 | $sqlIdentifier = $this->getSQLIdentifier($AST); |
257 | - $sqlAliasIdentifier = \array_map(static function ($info) { |
|
257 | + $sqlAliasIdentifier = \array_map(static function($info) { |
|
258 | 258 | return $info['alias']; |
259 | 259 | }, $sqlIdentifier); |
260 | 260 | |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | $idVar = $pathExpression->identificationVariable; |
312 | 312 | $field = $pathExpression->field; |
313 | 313 | |
314 | - if (! isset($selects[$idVar])) { |
|
314 | + if ( ! isset($selects[$idVar])) { |
|
315 | 315 | $selects[$idVar] = []; |
316 | 316 | } |
317 | 317 | |
@@ -324,7 +324,7 @@ discard block |
||
324 | 324 | if ($selectExpression instanceof SelectExpression) { |
325 | 325 | $idVar = $selectExpression->expression; |
326 | 326 | |
327 | - if (! \is_string($idVar)) { |
|
327 | + if ( ! \is_string($idVar)) { |
|
328 | 328 | continue; |
329 | 329 | } |
330 | 330 | |
@@ -359,7 +359,7 @@ discard block |
||
359 | 359 | ?OrderByClause $orderByClause |
360 | 360 | ) : string { |
361 | 361 | // If the sql statement has an order by clause, we need to wrap it in a new select distinct statement |
362 | - if (! $orderByClause) { |
|
362 | + if ( ! $orderByClause) { |
|
363 | 363 | return $sql; |
364 | 364 | } |
365 | 365 | |
@@ -397,7 +397,7 @@ discard block |
||
397 | 397 | $orderByItems[] = $orderByItemString; |
398 | 398 | $identifier = \substr($orderByItemString, 0, \strrpos($orderByItemString, ' ')); |
399 | 399 | |
400 | - if (! \in_array($identifier, $identifiers, true)) { |
|
400 | + if ( ! \in_array($identifier, $identifiers, true)) { |
|
401 | 401 | $identifiers[] = $identifier; |
402 | 402 | } |
403 | 403 | } |
@@ -550,7 +550,7 @@ discard block |
||
550 | 550 | */ |
551 | 551 | public function walkPathExpression($pathExpr) |
552 | 552 | { |
553 | - if (! $this->inSubSelect && ! $this->platformSupportsRowNumber() && ! \in_array($pathExpr, $this->orderByPathExpressions, true)) { |
|
553 | + if ( ! $this->inSubSelect && ! $this->platformSupportsRowNumber() && ! \in_array($pathExpr, $this->orderByPathExpressions, true)) { |
|
554 | 554 | $this->orderByPathExpressions[] = $pathExpr; |
555 | 555 | } |
556 | 556 |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | /** @var Query $countQuery */ |
225 | 225 | $countQuery = $this->cloneQuery($this->query); |
226 | 226 | |
227 | - if (! $countQuery->hasHint(CountWalker::HINT_DISTINCT)) { |
|
227 | + if ( ! $countQuery->hasHint(CountWalker::HINT_DISTINCT)) { |
|
228 | 228 | $countQuery->setHint(CountWalker::HINT_DISTINCT, true); |
229 | 229 | } |
230 | 230 | |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | foreach ($parameters as $key => $parameter) { |
259 | 259 | $parameterName = $parameter->getName(); |
260 | 260 | |
261 | - if (! (isset($parameterMappings[$parameterName]) || \array_key_exists($parameterName, $parameterMappings))) { |
|
261 | + if ( ! (isset($parameterMappings[$parameterName]) || \array_key_exists($parameterName, $parameterMappings))) { |
|
262 | 262 | unset($parameters[$key]); |
263 | 263 | } |
264 | 264 | } |
@@ -28,9 +28,9 @@ |
||
28 | 28 | */ |
29 | 29 | public function getSql(SqlWalker $sqlWalker) |
30 | 30 | { |
31 | - return 'ROW_NUMBER() OVER(' . \trim($sqlWalker->walkOrderByClause( |
|
31 | + return 'ROW_NUMBER() OVER('.\trim($sqlWalker->walkOrderByClause( |
|
32 | 32 | $this->orderByClause |
33 | - )) . ')'; |
|
33 | + )).')'; |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | /** |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | { |
87 | 87 | $cache = self::createCacheInstance($isDevMode, $cache); |
88 | 88 | |
89 | - if (! $cache instanceof CacheProvider) { |
|
89 | + if ( ! $cache instanceof CacheProvider) { |
|
90 | 90 | return $cache; |
91 | 91 | } |
92 | 92 | |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | $namespace .= ':'; |
97 | 97 | } |
98 | 98 | |
99 | - $cache->setNamespace($namespace . 'dc2_' . \md5($proxyDir) . '_'); // to avoid collisions |
|
99 | + $cache->setNamespace($namespace.'dc2_'.\md5($proxyDir).'_'); // to avoid collisions |
|
100 | 100 | |
101 | 101 | return $cache; |
102 | 102 | } |