Completed
Pull Request — master (#7825)
by
unknown
09:20
created
lib/Doctrine/ORM/Persisters/Entity/JoinedSubclassPersister.php 1 patch
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
         $parentClass = $this->class;
55 55
 
56 56
         while (($parentClass = $parentClass->getParent()) !== null) {
57
-            if (! $parentClass->isMappedSuperclass) {
57
+            if ( ! $parentClass->isMappedSuperclass) {
58 58
                 $parentTableName = $parentClass->getTableName();
59 59
 
60 60
                 if ($parentClass !== $rootClass) {
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
             }
111 111
 
112 112
             foreach ($data as $columnName => $value) {
113
-                if (! is_array($id) || ! isset($id[$columnName])) {
113
+                if ( ! is_array($id) || ! isset($id[$columnName])) {
114 114
                     $type = $this->columns[$columnName]->getType();
115 115
 
116 116
                     $stmt->bindValue($paramIndex++, $value, $type);
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     {
135 135
         $updateData = $this->prepareUpdateData($entity);
136 136
 
137
-        if (! $updateData) {
137
+        if ( ! $updateData) {
138 138
             return;
139 139
         }
140 140
 
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
             $versionedClass = $this->class->versionProperty->getDeclaringClass();
153 153
             $versionedTable = $versionedClass->getTableName();
154 154
 
155
-            if (! isset($updateData[$versionedTable])) {
155
+            if ( ! isset($updateData[$versionedTable])) {
156 156
                 $tableName = $versionedClass->table->getQuotedQualifiedName($this->platform);
157 157
 
158 158
                 $this->updateTable($entity, $tableName, [], true);
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
         $parentClass  = $this->class;
190 190
 
191 191
         while (($parentClass = $parentClass->getParent()) !== null) {
192
-            if (! $parentClass->isMappedSuperclass) {
192
+            if ( ! $parentClass->isMappedSuperclass) {
193 193
                 $parentTable = $parentClass->table->getQuotedQualifiedName($this->platform);
194 194
 
195 195
                 $this->conn->delete($parentTable, $id);
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
 
236 236
         if ($filterSql) {
237 237
             $conditionSql .= $conditionSql
238
-                ? ' AND ' . $filterSql
238
+                ? ' AND '.$filterSql
239 239
                 : $filterSql;
240 240
         }
241 241
 
@@ -243,26 +243,26 @@  discard block
 block discarded – undo
243 243
 
244 244
         switch ($lockMode) {
245 245
             case LockMode::PESSIMISTIC_READ:
246
-                $lockSql = ' ' . $this->platform->getReadLockSQL();
246
+                $lockSql = ' '.$this->platform->getReadLockSQL();
247 247
                 break;
248 248
 
249 249
             case LockMode::PESSIMISTIC_WRITE:
250
-                $lockSql = ' ' . $this->platform->getWriteLockSQL();
250
+                $lockSql = ' '.$this->platform->getWriteLockSQL();
251 251
                 break;
252 252
         }
253 253
 
254 254
         $tableName  = $this->class->table->getQuotedQualifiedName($this->platform);
255
-        $from       = ' FROM ' . $tableName . ' ' . $baseTableAlias;
256
-        $where      = $conditionSql !== '' ? ' WHERE ' . $conditionSql : '';
255
+        $from       = ' FROM '.$tableName.' '.$baseTableAlias;
256
+        $where      = $conditionSql !== '' ? ' WHERE '.$conditionSql : '';
257 257
         $lock       = $this->platform->appendLockHint($from, $lockMode);
258 258
         $columnList = $this->getSelectColumnsSQL();
259
-        $query      = 'SELECT ' . $columnList
259
+        $query      = 'SELECT '.$columnList
260 260
                     . $lock
261 261
                     . $joinSql
262 262
                     . $where
263 263
                     . $orderBySql;
264 264
 
265
-        return $this->platform->modifyLimitQuery($query, $limit, $offset ?? 0) . $lockSql;
265
+        return $this->platform->modifyLimitQuery($query, $limit, $offset ?? 0).$lockSql;
266 266
     }
267 267
 
268 268
     /**
@@ -284,14 +284,14 @@  discard block
 block discarded – undo
284 284
 
285 285
         if ($filterSql !== '') {
286 286
             $conditionSql = $conditionSql
287
-                ? $conditionSql . ' AND ' . $filterSql
287
+                ? $conditionSql.' AND '.$filterSql
288 288
                 : $filterSql;
289 289
         }
290 290
 
291 291
         return 'SELECT COUNT(*) '
292
-            . 'FROM ' . $tableName . ' ' . $baseTableAlias
292
+            . 'FROM '.$tableName.' '.$baseTableAlias
293 293
             . $joinSql
294
-            . (empty($conditionSql) ? '' : ' WHERE ' . $conditionSql);
294
+            . (empty($conditionSql) ? '' : ' WHERE '.$conditionSql);
295 295
     }
296 296
 
297 297
     /**
@@ -307,23 +307,23 @@  discard block
 block discarded – undo
307 307
         $parentClass = $this->class;
308 308
 
309 309
         while (($parentClass = $parentClass->getParent()) !== null) {
310
-            if (! $parentClass->isMappedSuperclass) {
310
+            if ( ! $parentClass->isMappedSuperclass) {
311 311
                 $conditions = [];
312 312
                 $tableName  = $parentClass->table->getQuotedQualifiedName($this->platform);
313 313
                 $tableAlias = $this->getSQLTableAlias($parentClass->getTableName());
314
-                $joinSql   .= ' INNER JOIN ' . $tableName . ' ' . $tableAlias . ' ON ';
314
+                $joinSql   .= ' INNER JOIN '.$tableName.' '.$tableAlias.' ON ';
315 315
 
316 316
                 foreach ($identifierColumns as $idColumn) {
317 317
                     $quotedColumnName = $this->platform->quoteIdentifier($idColumn->getColumnName());
318 318
 
319
-                    $conditions[] = $baseTableAlias . '.' . $quotedColumnName . ' = ' . $tableAlias . '.' . $quotedColumnName;
319
+                    $conditions[] = $baseTableAlias.'.'.$quotedColumnName.' = '.$tableAlias.'.'.$quotedColumnName;
320 320
                 }
321 321
 
322 322
                 $joinSql .= implode(' AND ', $conditions);
323 323
             }
324 324
         }
325 325
 
326
-        return parent::getLockTablesSql($lockMode) . $joinSql;
326
+        return parent::getLockTablesSql($lockMode).$joinSql;
327 327
     }
328 328
 
329 329
     /**
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
             if ($property instanceof FieldMetadata) {
348 348
                 $tableClass = $parentClass = $this->class;
349 349
                 while ($parentClass !== $property->getDeclaringClass() && ($parentClass = $parentClass->getParent()) !== null) {
350
-                    if (! $parentClass->isMappedSuperclass) {
350
+                    if ( ! $parentClass->isMappedSuperclass) {
351 351
                         $tableClass = $parentClass;
352 352
                     }
353 353
                 }
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
                 continue;
357 357
             }
358 358
 
359
-            if (! ($property instanceof ToOneAssociationMetadata) || ! $property->isOwningSide()) {
359
+            if ( ! ($property instanceof ToOneAssociationMetadata) || ! $property->isOwningSide()) {
360 360
                 continue;
361 361
             }
362 362
 
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
                 /** @var JoinColumnMetadata $joinColumn */
367 367
                 $referencedColumnName = $joinColumn->getReferencedColumnName();
368 368
 
369
-                if (! $joinColumn->getType()) {
369
+                if ( ! $joinColumn->getType()) {
370 370
                     $joinColumn->setType(PersisterHelper::getTypeOfColumn($referencedColumnName, $targetClass, $this->em));
371 371
                 }
372 372
 
@@ -385,7 +385,7 @@  discard block
 block discarded – undo
385 385
         $this->currentPersisterContext->rsm->setDiscriminatorColumn('r', $resultColumnName);
386 386
         $this->currentPersisterContext->rsm->addMetaResult('r', $resultColumnName, $discrColumnName, false, $discrColumnType);
387 387
 
388
-        $columnList[] = $discrColumnType->convertToDatabaseValueSQL($discrTableAlias . '.' . $quotedColumnName, $this->platform);
388
+        $columnList[] = $discrColumnType->convertToDatabaseValueSQL($discrTableAlias.'.'.$quotedColumnName, $this->platform);
389 389
 
390 390
         // sub tables
391 391
         foreach ($this->class->getSubClasses() as $subClassName) {
@@ -409,7 +409,7 @@  discard block
 block discarded – undo
409 409
                             /** @var JoinColumnMetadata $joinColumn */
410 410
                             $referencedColumnName = $joinColumn->getReferencedColumnName();
411 411
 
412
-                            if (! $joinColumn->getType()) {
412
+                            if ( ! $joinColumn->getType()) {
413 413
                                 $joinColumn->setType(PersisterHelper::getTypeOfColumn($referencedColumnName, $targetClass, $this->em));
414 414
                             }
415 415
 
@@ -459,7 +459,7 @@  discard block
 block discarded – undo
459 459
                         $columnName           = $joinColumn->getColumnName();
460 460
                         $referencedColumnName = $joinColumn->getReferencedColumnName();
461 461
 
462
-                        if (! $joinColumn->getType()) {
462
+                        if ( ! $joinColumn->getType()) {
463 463
                             $joinColumn->setType(PersisterHelper::getTypeOfColumn($referencedColumnName, $targetClass, $this->em));
464 464
                         }
465 465
 
@@ -512,16 +512,16 @@  discard block
 block discarded – undo
512 512
         $parentClass = $this->class;
513 513
 
514 514
         while (($parentClass = $parentClass->getParent()) !== null) {
515
-            if (! $parentClass->isMappedSuperclass) {
515
+            if ( ! $parentClass->isMappedSuperclass) {
516 516
                 $conditions = [];
517 517
                 $tableName  = $parentClass->table->getQuotedQualifiedName($this->platform);
518 518
                 $tableAlias = $this->getSQLTableAlias($parentClass->getTableName());
519
-                $joinSql   .= ' INNER JOIN ' . $tableName . ' ' . $tableAlias . ' ON ';
519
+                $joinSql   .= ' INNER JOIN '.$tableName.' '.$tableAlias.' ON ';
520 520
 
521 521
                 foreach ($identifierColumns as $idColumn) {
522 522
                     $quotedColumnName = $this->platform->quoteIdentifier($idColumn->getColumnName());
523 523
 
524
-                    $conditions[] = $baseTableAlias . '.' . $quotedColumnName . ' = ' . $tableAlias . '.' . $quotedColumnName;
524
+                    $conditions[] = $baseTableAlias.'.'.$quotedColumnName.' = '.$tableAlias.'.'.$quotedColumnName;
525 525
                 }
526 526
 
527 527
                 $joinSql .= implode(' AND ', $conditions);
@@ -534,12 +534,12 @@  discard block
 block discarded – undo
534 534
             $subClass   = $this->em->getClassMetadata($subClassName);
535 535
             $tableName  = $subClass->table->getQuotedQualifiedName($this->platform);
536 536
             $tableAlias = $this->getSQLTableAlias($subClass->getTableName());
537
-            $joinSql   .= ' LEFT JOIN ' . $tableName . ' ' . $tableAlias . ' ON ';
537
+            $joinSql   .= ' LEFT JOIN '.$tableName.' '.$tableAlias.' ON ';
538 538
 
539 539
             foreach ($identifierColumns as $idColumn) {
540 540
                 $quotedColumnName = $this->platform->quoteIdentifier($idColumn->getColumnName());
541 541
 
542
-                $conditions[] = $baseTableAlias . '.' . $quotedColumnName . ' = ' . $tableAlias . '.' . $quotedColumnName;
542
+                $conditions[] = $baseTableAlias.'.'.$quotedColumnName.' = '.$tableAlias.'.'.$quotedColumnName;
543 543
             }
544 544
 
545 545
             $joinSql .= implode(' AND ', $conditions);
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/ClassMetadata.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -220,11 +220,11 @@  discard block
 block discarded – undo
220 220
             $this->setCache(clone $parent->cache);
221 221
         }
222 222
 
223
-        if (! empty($parent->lifecycleCallbacks)) {
223
+        if ( ! empty($parent->lifecycleCallbacks)) {
224 224
             $this->lifecycleCallbacks = $parent->lifecycleCallbacks;
225 225
         }
226 226
 
227
-        if (! empty($parent->entityListeners)) {
227
+        if ( ! empty($parent->entityListeners)) {
228 228
             $this->entityListeners = $parent->entityListeners;
229 229
         }
230 230
     }
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
     {
266 266
         $rootClass = $parentClass = $this;
267 267
         while (($parentClass = $parentClass->getParent()) !== null) {
268
-            if (! $parentClass->isMappedSuperclass) {
268
+            if ( ! $parentClass->isMappedSuperclass) {
269 269
                 $rootClass = $parentClass;
270 270
             }
271 271
         }
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
      */
297 297
     public function __toString()
298 298
     {
299
-        return self::class . '@' . spl_object_id($this);
299
+        return self::class.'@'.spl_object_id($this);
300 300
     }
301 301
 
302 302
     /**
@@ -392,11 +392,11 @@  discard block
 block discarded – undo
392 392
      */
393 393
     public function isIdentifier(string $fieldName) : bool
394 394
     {
395
-        if (! $this->identifier) {
395
+        if ( ! $this->identifier) {
396 396
             return false;
397 397
         }
398 398
 
399
-        if (! $this->isIdentifierComposite()) {
399
+        if ( ! $this->isIdentifierComposite()) {
400 400
             return $fieldName === $this->identifier[0];
401 401
         }
402 402
 
@@ -420,11 +420,11 @@  discard block
 block discarded – undo
420 420
         }
421 421
 
422 422
         // Verify & complete identifier mapping
423
-        if (! $this->identifier) {
423
+        if ( ! $this->identifier) {
424 424
             throw MappingException::identifierRequired($this->className);
425 425
         }
426 426
 
427
-        $explicitlyGeneratedProperties = array_filter($this->properties, static function (Property $property) : bool {
427
+        $explicitlyGeneratedProperties = array_filter($this->properties, static function(Property $property) : bool {
428 428
             return $property instanceof FieldMetadata
429 429
                 && $property->isPrimaryKey()
430 430
                 && $property->hasValueGenerator();
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
         foreach ($this->lifecycleCallbacks as $callbacks) {
446 446
             /** @var array $callbacks */
447 447
             foreach ($callbacks as $callbackFuncName) {
448
-                if (! $reflectionService->hasPublicMethod($this->className, $callbackFuncName)) {
448
+                if ( ! $reflectionService->hasPublicMethod($this->className, $callbackFuncName)) {
449 449
                     throw MappingException::lifecycleCallbackMethodNotFound($this->className, $callbackFuncName);
450 450
                 }
451 451
             }
@@ -474,7 +474,7 @@  discard block
 block discarded – undo
474 474
             throw MappingException::singleIdNotAllowedOnCompositePrimaryKey($this->className);
475 475
         }
476 476
 
477
-        if (! isset($this->identifier[0])) {
477
+        if ( ! isset($this->identifier[0])) {
478 478
             throw MappingException::noIdDefined($this->className);
479 479
         }
480 480
 
@@ -533,7 +533,7 @@  discard block
 block discarded – undo
533 533
             // Association defined as Id field
534 534
             $targetClass = $em->getClassMetadata($property->getTargetEntity());
535 535
 
536
-            if (! $property->isOwningSide()) {
536
+            if ( ! $property->isOwningSide()) {
537 537
                 $property    = $targetClass->getProperty($property->getMappedBy());
538 538
                 $targetClass = $em->getClassMetadata($property->getTargetEntity());
539 539
             }
@@ -547,7 +547,7 @@  discard block
 block discarded – undo
547 547
                 $columnName           = $joinColumn->getColumnName();
548 548
                 $referencedColumnName = $joinColumn->getReferencedColumnName();
549 549
 
550
-                if (! $joinColumn->getType()) {
550
+                if ( ! $joinColumn->getType()) {
551 551
                     $joinColumn->setType(PersisterHelper::getTypeOfColumn($referencedColumnName, $targetClass, $em));
552 552
                 }
553 553
 
@@ -581,10 +581,10 @@  discard block
 block discarded – undo
581 581
     {
582 582
         $schema = $this->getSchemaName() === null
583 583
             ? ''
584
-            : $this->getSchemaName() . '_';
584
+            : $this->getSchemaName().'_';
585 585
 
586 586
         // replace dots with underscores because PostgreSQL creates temporary tables in a special schema
587
-        return $schema . $this->getTableName() . '_id_tmp';
587
+        return $schema.$this->getTableName().'_id_tmp';
588 588
     }
589 589
 
590 590
     /**
@@ -618,7 +618,7 @@  discard block
 block discarded – undo
618 618
      */
619 619
     public function setInheritanceType($type) : void
620 620
     {
621
-        if (! $this->isInheritanceType($type)) {
621
+        if ( ! $this->isInheritanceType($type)) {
622 622
             throw MappingException::invalidInheritanceType($this->className, $type);
623 623
         }
624 624
 
@@ -636,7 +636,7 @@  discard block
 block discarded – undo
636 636
     {
637 637
         $fieldName = $property->getName();
638 638
 
639
-        if (! isset($this->properties[$fieldName])) {
639
+        if ( ! isset($this->properties[$fieldName])) {
640 640
             throw MappingException::invalidOverrideFieldName($this->className, $fieldName);
641 641
         }
642 642
 
@@ -722,13 +722,13 @@  discard block
 block discarded – undo
722 722
         $declaringClass = $this->properties[$fieldName]->getDeclaringClass();
723 723
         if ($declaringClass->className === $this->className) {
724 724
             return false;
725
-        } else if (! $declaringClass->isMappedSuperclass) {
725
+        } else if ( ! $declaringClass->isMappedSuperclass) {
726 726
             return true;
727 727
         }
728 728
 
729 729
         $parentClass = $this;
730 730
         while (($parentClass = $parentClass->getParent()) !== $declaringClass) {
731
-            if (! $parentClass->isMappedSuperclass) {
731
+            if ( ! $parentClass->isMappedSuperclass) {
732 732
                 return true;
733 733
             }
734 734
         }
@@ -850,7 +850,7 @@  discard block
 block discarded – undo
850 850
         $inheritedProperty = $declaringClass->isMappedSuperclass ? clone $property : $property;
851 851
 
852 852
         if ($inheritedProperty instanceof FieldMetadata) {
853
-            if (! $declaringClass->isMappedSuperclass) {
853
+            if ( ! $declaringClass->isMappedSuperclass) {
854 854
                 $inheritedProperty->setTableName($property->getTableName());
855 855
             }
856 856
 
@@ -943,11 +943,11 @@  discard block
 block discarded – undo
943 943
             'method' => $methodName,
944 944
         ];
945 945
 
946
-        if (! class_exists($class)) {
946
+        if ( ! class_exists($class)) {
947 947
             throw MappingException::entityListenerClassNotFound($class, $this->className);
948 948
         }
949 949
 
950
-        if (! method_exists($class, $methodName)) {
950
+        if ( ! method_exists($class, $methodName)) {
951 951
             throw MappingException::entityListenerMethodNotFound($class, $methodName, $this->className);
952 952
         }
953 953
 
@@ -1015,7 +1015,7 @@  discard block
 block discarded – undo
1015 1015
             return;
1016 1016
         }
1017 1017
 
1018
-        if (! (class_exists($className) || interface_exists($className))) {
1018
+        if ( ! (class_exists($className) || interface_exists($className))) {
1019 1019
             throw MappingException::invalidClassInDiscriminatorMap($className, $this->className);
1020 1020
         }
1021 1021
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Ticket/GH5998Test.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
         self::assertNotNull($child);
51 51
 
52 52
         // Test lock and update
53
-        $this->em->transactional(static function ($em) use ($child) {
53
+        $this->em->transactional(static function($em) use ($child) {
54 54
             $em->lock($child, LockMode::NONE);
55 55
             $child->firstName = 'Bob';
56 56
             $child->status    = 0;
Please login to merge, or discard this patch.