Test Failed
Push — develop ( 10da16...c19264 )
by Luís
63:31
created
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.
lib/Doctrine/ORM/Mapping/AssociationMetadata.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
     }
157 157
 
158 158
     /**
159
-     * @return array
159
+     * @return string[]
160 160
      */
161 161
     public function getCascade()
162 162
     {
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\Mapping;
24 24
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/ClassMetadata.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1278,7 +1278,7 @@
 block discarded – undo
1278 1278
      *
1279 1279
      * @todo guilhermeblanco Only used for ClassMetadataTest. Remove if possible!
1280 1280
      *
1281
-     * @param array $subclasses The names of all mapped subclasses.
1281
+     * @param string[] $subclasses The names of all mapped subclasses.
1282 1282
      *
1283 1283
      * @return void
1284 1284
      */
Please login to merge, or discard this patch.
Spacing   +49 added lines, -49 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\Mapping;
24 24
 
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
      *
331 331
      * @return void
332 332
      */
333
-    public function setCache(?CacheMetadata $cache = null)
333
+    public function setCache(? CacheMetadata $cache = null)
334 334
     {
335 335
         $this->cache = $cache;
336 336
     }
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
     /**
339 339
      * @return CacheMetadata|null
340 340
      */
341
-    public function getCache(): ?CacheMetadata
341
+    public function getCache(): ? CacheMetadata
342 342
     {
343 343
         return $this->cache;
344 344
     }
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
     /**
347 347
      * @return \ReflectionClass|null
348 348
      */
349
-    public function getReflectionClass() : ?\ReflectionClass
349
+    public function getReflectionClass() : ? \ReflectionClass
350 350
     {
351 351
         return $this->reflectionClass;
352 352
     }
@@ -374,7 +374,7 @@  discard block
 block discarded – undo
374 374
      */
375 375
     public function __toString()
376 376
     {
377
-        return __CLASS__ . '@' . spl_object_hash($this);
377
+        return __CLASS__.'@'.spl_object_hash($this);
378 378
     }
379 379
 
380 380
     /**
@@ -478,7 +478,7 @@  discard block
 block discarded – undo
478 478
         // Restore ReflectionClass and properties
479 479
         $this->reflectionClass = $reflService->getClass($this->name);
480 480
 
481
-        if (! $this->reflectionClass) {
481
+        if ( ! $this->reflectionClass) {
482 482
             return;
483 483
         }
484 484
 
@@ -553,11 +553,11 @@  discard block
 block discarded – undo
553 553
         }
554 554
 
555 555
         // Verify & complete identifier mapping
556
-        if (! $this->identifier) {
556
+        if ( ! $this->identifier) {
557 557
             throw MappingException::identifierRequired($this->name);
558 558
         }
559 559
 
560
-        $explicitlyGeneratedProperties = array_filter($this->properties, function (Property $property) : bool {
560
+        $explicitlyGeneratedProperties = array_filter($this->properties, function(Property $property) : bool {
561 561
             return $property instanceof FieldMetadata
562 562
                 && $property->isPrimaryKey()
563 563
                 && $property->hasValueGenerator();
@@ -578,8 +578,8 @@  discard block
 block discarded – undo
578 578
     public function validateAssociations()
579 579
     {
580 580
         array_map(
581
-            function (Property $property) {
582
-                if (! ($property instanceof AssociationMetadata)) {
581
+            function(Property $property) {
582
+                if ( ! ($property instanceof AssociationMetadata)) {
583 583
                     return;
584 584
                 }
585 585
 
@@ -635,11 +635,11 @@  discard block
 block discarded – undo
635 635
      */
636 636
     public function isIdentifier($fieldName)
637 637
     {
638
-        if (! $this->identifier) {
638
+        if ( ! $this->identifier) {
639 639
             return false;
640 640
         }
641 641
 
642
-        if (! $this->isIdentifierComposite()) {
642
+        if ( ! $this->isIdentifierComposite()) {
643 643
             return $fieldName === $this->identifier[0];
644 644
         }
645 645
 
@@ -667,7 +667,7 @@  discard block
 block discarded – undo
667 667
      */
668 668
     public function getNamedQuery($queryName)
669 669
     {
670
-        if (! isset($this->namedQueries[$queryName])) {
670
+        if ( ! isset($this->namedQueries[$queryName])) {
671 671
             throw MappingException::queryNotFound($this->name, $queryName);
672 672
         }
673 673
 
@@ -727,7 +727,7 @@  discard block
 block discarded – undo
727 727
      */
728 728
     public function getSqlResultSetMapping($name)
729 729
     {
730
-        if (! isset($this->sqlResultSetMappings[$name])) {
730
+        if ( ! isset($this->sqlResultSetMappings[$name])) {
731 731
             throw MappingException::resultMappingNotFound($this->name, $name);
732 732
         }
733 733
 
@@ -762,7 +762,7 @@  discard block
 block discarded – undo
762 762
             $property->setColumnName($columnName);
763 763
         }
764 764
 
765
-        if (! $this->isMappedSuperclass) {
765
+        if ( ! $this->isMappedSuperclass) {
766 766
             $property->setTableName($this->getTableName());
767 767
         }
768 768
 
@@ -782,7 +782,7 @@  discard block
 block discarded – undo
782 782
                 throw MappingException::sqlConversionNotAllowedForPrimaryKeyProperties($property);
783 783
             };
784 784
 
785
-            if (! in_array($fieldName, $this->identifier)) {
785
+            if ( ! in_array($fieldName, $this->identifier)) {
786 786
                 $this->identifier[] = $fieldName;
787 787
             }
788 788
         }
@@ -836,7 +836,7 @@  discard block
 block discarded – undo
836 836
         $fieldName    = $property->getName();
837 837
         $targetEntity = $property->getTargetEntity();
838 838
 
839
-        if (! $targetEntity) {
839
+        if ( ! $targetEntity) {
840 840
             throw MappingException::missingTargetEntity($fieldName);
841 841
         }
842 842
 
@@ -867,7 +867,7 @@  discard block
 block discarded – undo
867 867
                 $this->identifier[] = $property->getName();
868 868
             }
869 869
 
870
-            if ($this->cache && !$property->getCache()) {
870
+            if ($this->cache && ! $property->getCache()) {
871 871
                 throw CacheException::nonCacheableEntityAssociation($this->name, $fieldName);
872 872
             }
873 873
 
@@ -920,7 +920,7 @@  discard block
 block discarded – undo
920 920
             foreach ($property->getJoinColumns() as $joinColumn) {
921 921
                 if ($property instanceof OneToOneAssociationMetadata && $this->inheritanceType !== InheritanceType::SINGLE_TABLE) {
922 922
                     if (1 === count($property->getJoinColumns())) {
923
-                        if (! $property->isPrimaryKey()) {
923
+                        if ( ! $property->isPrimaryKey()) {
924 924
                             $joinColumn->setUnique(true);
925 925
                         }
926 926
                     } else {
@@ -928,13 +928,13 @@  discard block
 block discarded – undo
928 928
                     }
929 929
                 }
930 930
 
931
-                $joinColumn->setTableName(! $this->isMappedSuperclass ? $this->getTableName() : null);
931
+                $joinColumn->setTableName( ! $this->isMappedSuperclass ? $this->getTableName() : null);
932 932
 
933
-                if (! $joinColumn->getColumnName()) {
933
+                if ( ! $joinColumn->getColumnName()) {
934 934
                     $joinColumn->setColumnName($this->namingStrategy->joinColumnName($fieldName, $this->name));
935 935
                 }
936 936
 
937
-                if (! $joinColumn->getReferencedColumnName()) {
937
+                if ( ! $joinColumn->getReferencedColumnName()) {
938 938
                     $joinColumn->setReferencedColumnName($this->namingStrategy->referenceColumnName());
939 939
                 }
940 940
 
@@ -962,7 +962,7 @@  discard block
 block discarded – undo
962 962
         if ($property->isOrphanRemoval()) {
963 963
             $cascades = $property->getCascade();
964 964
 
965
-            if (! in_array('remove', $cascades)) {
965
+            if ( ! in_array('remove', $cascades)) {
966 966
                 $cascades[] = 'remove';
967 967
 
968 968
                 $property->setCascade($cascades);
@@ -1030,14 +1030,14 @@  discard block
 block discarded – undo
1030 1030
         $property->setOwningSide(false);
1031 1031
 
1032 1032
         // OneToMany MUST have mappedBy
1033
-        if (! $property->getMappedBy()) {
1033
+        if ( ! $property->getMappedBy()) {
1034 1034
             throw MappingException::oneToManyRequiresMappedBy($property->getName());
1035 1035
         }
1036 1036
 
1037 1037
         if ($property->isOrphanRemoval()) {
1038 1038
             $cascades = $property->getCascade();
1039 1039
 
1040
-            if (! in_array('remove', $cascades)) {
1040
+            if ( ! in_array('remove', $cascades)) {
1041 1041
                 $cascades[] = 'remove';
1042 1042
 
1043 1043
                 $property->setCascade($cascades);
@@ -1060,7 +1060,7 @@  discard block
 block discarded – undo
1060 1060
 
1061 1061
             $property->setJoinTable($joinTable);
1062 1062
 
1063
-            if (! $joinTable->getName()) {
1063
+            if ( ! $joinTable->getName()) {
1064 1064
                 $joinTableName = $this->namingStrategy->joinTableName(
1065 1065
                     $property->getSourceEntity(),
1066 1066
                     $property->getTargetEntity(),
@@ -1072,7 +1072,7 @@  discard block
 block discarded – undo
1072 1072
 
1073 1073
             $selfReferencingEntityWithoutJoinColumns = $property->getSourceEntity() == $property->getTargetEntity() && ! $joinTable->hasColumns();
1074 1074
 
1075
-            if (! $joinTable->getJoinColumns()) {
1075
+            if ( ! $joinTable->getJoinColumns()) {
1076 1076
                 $referencedColumnName = $this->namingStrategy->referenceColumnName();
1077 1077
                 $sourceReferenceName  = $selfReferencingEntityWithoutJoinColumns ? 'source' : $referencedColumnName;
1078 1078
                 $columnName           = $this->namingStrategy->joinKeyColumnName($property->getSourceEntity(), $sourceReferenceName);
@@ -1085,7 +1085,7 @@  discard block
 block discarded – undo
1085 1085
                 $joinTable->addJoinColumn($joinColumn);
1086 1086
             }
1087 1087
 
1088
-            if (! $joinTable->getInverseJoinColumns()) {
1088
+            if ( ! $joinTable->getInverseJoinColumns()) {
1089 1089
                 $referencedColumnName = $this->namingStrategy->referenceColumnName();
1090 1090
                 $targetReferenceName  = $selfReferencingEntityWithoutJoinColumns ? 'target' : $referencedColumnName;
1091 1091
                 $columnName           = $this->namingStrategy->joinKeyColumnName($property->getTargetEntity(), $targetReferenceName);
@@ -1099,13 +1099,13 @@  discard block
 block discarded – undo
1099 1099
             }
1100 1100
 
1101 1101
             foreach ($joinTable->getJoinColumns() as $joinColumn) {
1102
-                if (! $joinColumn->getReferencedColumnName()) {
1102
+                if ( ! $joinColumn->getReferencedColumnName()) {
1103 1103
                     $joinColumn->setReferencedColumnName($this->namingStrategy->referenceColumnName());
1104 1104
                 }
1105 1105
 
1106 1106
                 $referencedColumnName = $joinColumn->getReferencedColumnName();
1107 1107
 
1108
-                if (! $joinColumn->getColumnName()) {
1108
+                if ( ! $joinColumn->getColumnName()) {
1109 1109
                     $columnName = $this->namingStrategy->joinKeyColumnName(
1110 1110
                         $property->getSourceEntity(),
1111 1111
                         $referencedColumnName
@@ -1116,13 +1116,13 @@  discard block
 block discarded – undo
1116 1116
             }
1117 1117
 
1118 1118
             foreach ($joinTable->getInverseJoinColumns() as $inverseJoinColumn) {
1119
-                if (! $inverseJoinColumn->getReferencedColumnName()) {
1119
+                if ( ! $inverseJoinColumn->getReferencedColumnName()) {
1120 1120
                     $inverseJoinColumn->setReferencedColumnName($this->namingStrategy->referenceColumnName());
1121 1121
                 }
1122 1122
 
1123 1123
                 $referencedColumnName = $inverseJoinColumn->getReferencedColumnName();
1124 1124
 
1125
-                if (! $inverseJoinColumn->getColumnName()) {
1125
+                if ( ! $inverseJoinColumn->getColumnName()) {
1126 1126
                     $columnName = $this->namingStrategy->joinKeyColumnName(
1127 1127
                         $property->getTargetEntity(),
1128 1128
                         $referencedColumnName
@@ -1215,7 +1215,7 @@  discard block
 block discarded – undo
1215 1215
             // Association defined as Id field
1216 1216
             $targetClass = $em->getClassMetadata($property->getTargetEntity());
1217 1217
 
1218
-            if (! $property->isOwningSide()) {
1218
+            if ( ! $property->isOwningSide()) {
1219 1219
                 $property    = $targetClass->getProperty($property->getMappedBy());
1220 1220
                 $targetClass = $em->getClassMetadata($property->getTargetEntity());
1221 1221
             }
@@ -1266,11 +1266,11 @@  discard block
 block discarded – undo
1266 1266
     {
1267 1267
         $schema = empty($this->getSchemaName())
1268 1268
             ? ''
1269
-            : $this->getSchemaName() . '_'
1269
+            : $this->getSchemaName().'_'
1270 1270
         ;
1271 1271
 
1272 1272
         // replace dots with underscores because PostgreSQL creates temporary tables in a special schema
1273
-        return $schema . $this->getTableName() . '_id_tmp';
1273
+        return $schema.$this->getTableName().'_id_tmp';
1274 1274
     }
1275 1275
 
1276 1276
     /**
@@ -1356,7 +1356,7 @@  discard block
 block discarded – undo
1356 1356
     {
1357 1357
         $fieldName = $property->getName();
1358 1358
 
1359
-        if (! isset($this->properties[$fieldName])) {
1359
+        if ( ! isset($this->properties[$fieldName])) {
1360 1360
             throw MappingException::invalidOverrideFieldName($this->name, $fieldName);
1361 1361
         }
1362 1362
 
@@ -1476,7 +1476,7 @@  discard block
 block discarded – undo
1476 1476
      *
1477 1477
      * @return LocalColumnMetadata|null
1478 1478
      */
1479
-    public function getColumn(string $columnName): ?LocalColumnMetadata
1479
+    public function getColumn(string $columnName): ? LocalColumnMetadata
1480 1480
     {
1481 1481
         foreach ($this->properties as $property) {
1482 1482
             if ($property instanceof LocalColumnMetadata && $property->getColumnName() === $columnName) {
@@ -1583,7 +1583,7 @@  discard block
 block discarded – undo
1583 1583
         $declaringClass    = $property->getDeclaringClass();
1584 1584
 
1585 1585
         if ($inheritedProperty instanceof FieldMetadata) {
1586
-            if (! $declaringClass->isMappedSuperclass) {
1586
+            if ( ! $declaringClass->isMappedSuperclass) {
1587 1587
                 $inheritedProperty->setTableName($property->getTableName());
1588 1588
             }
1589 1589
 
@@ -1641,7 +1641,7 @@  discard block
 block discarded – undo
1641 1641
             throw MappingException::duplicateQueryMapping($this->name, $name);
1642 1642
         }
1643 1643
 
1644
-        if (! isset($queryMapping['resultClass']) && ! isset($queryMapping['resultSetMapping'])) {
1644
+        if ( ! isset($queryMapping['resultClass']) && ! isset($queryMapping['resultSetMapping'])) {
1645 1645
             throw MappingException::missingQueryMapping($this->name, $name);
1646 1646
         }
1647 1647
 
@@ -1664,7 +1664,7 @@  discard block
 block discarded – undo
1664 1664
      */
1665 1665
     public function addSqlResultSetMapping(array $resultMapping)
1666 1666
     {
1667
-        if (!isset($resultMapping['name'])) {
1667
+        if ( ! isset($resultMapping['name'])) {
1668 1668
             throw MappingException::nameIsMandatoryForSqlResultSetMapping($this->name);
1669 1669
         }
1670 1670
 
@@ -1674,7 +1674,7 @@  discard block
 block discarded – undo
1674 1674
 
1675 1675
         if (isset($resultMapping['entities'])) {
1676 1676
             foreach ($resultMapping['entities'] as $key => $entityResult) {
1677
-                if (! isset($entityResult['entityClass'])) {
1677
+                if ( ! isset($entityResult['entityClass'])) {
1678 1678
                     throw MappingException::missingResultSetMappingEntity($this->name, $resultMapping['name']);
1679 1679
                 }
1680 1680
 
@@ -1687,11 +1687,11 @@  discard block
 block discarded – undo
1687 1687
 
1688 1688
                 if (isset($entityResult['fields'])) {
1689 1689
                     foreach ($entityResult['fields'] as $k => $field) {
1690
-                        if (! isset($field['name'])) {
1690
+                        if ( ! isset($field['name'])) {
1691 1691
                             throw MappingException::missingResultSetMappingFieldName($this->name, $resultMapping['name']);
1692 1692
                         }
1693 1693
 
1694
-                        if (! isset($field['column'])) {
1694
+                        if ( ! isset($field['column'])) {
1695 1695
                             $fieldName = $field['name'];
1696 1696
 
1697 1697
                             if (strpos($fieldName, '.')) {
@@ -1715,7 +1715,7 @@  discard block
 block discarded – undo
1715 1715
      *
1716 1716
      * @return void
1717 1717
      */
1718
-    public function setCustomRepositoryClassName(?string $repositoryClassName)
1718
+    public function setCustomRepositoryClassName(? string $repositoryClassName)
1719 1719
     {
1720 1720
         $this->customRepositoryClassName = $repositoryClassName;
1721 1721
     }
@@ -1723,7 +1723,7 @@  discard block
 block discarded – undo
1723 1723
     /**
1724 1724
      * @return string|null
1725 1725
      */
1726
-    public function getCustomRepositoryClassName() : ?string
1726
+    public function getCustomRepositoryClassName() : ? string
1727 1727
     {
1728 1728
         return $this->customRepositoryClassName;
1729 1729
     }
@@ -1798,11 +1798,11 @@  discard block
 block discarded – undo
1798 1798
             'method' => $method,
1799 1799
         ];
1800 1800
 
1801
-        if (! class_exists($class)) {
1801
+        if ( ! class_exists($class)) {
1802 1802
             throw MappingException::entityListenerClassNotFound($class, $this->name);
1803 1803
         }
1804 1804
 
1805
-        if (! method_exists($class, $method)) {
1805
+        if ( ! method_exists($class, $method)) {
1806 1806
             throw MappingException::entityListenerMethodNotFound($class, $method, $this->name);
1807 1807
         }
1808 1808
 
@@ -1876,7 +1876,7 @@  discard block
 block discarded – undo
1876 1876
             return;
1877 1877
         }
1878 1878
 
1879
-        if (! (class_exists($className) || interface_exists($className))) {
1879
+        if ( ! (class_exists($className) || interface_exists($className))) {
1880 1880
             throw MappingException::invalidClassInDiscriminatorMap($className, $this->name);
1881 1881
         }
1882 1882
 
@@ -1973,7 +1973,7 @@  discard block
 block discarded – undo
1973 1973
         $namespace = $this->reflectionClass->getNamespaceName();
1974 1974
 
1975 1975
         if ($className !== null && strpos($className, '\\') === false && $namespace) {
1976
-            return ltrim($namespace . '\\' . $className, '\\');
1976
+            return ltrim($namespace.'\\'.$className, '\\');
1977 1977
         }
1978 1978
 
1979 1979
         return ltrim($className, '\\');
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/Driver/StaticPHPDriver.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     /**
56 56
      * Constructor.
57 57
      *
58
-     * @param array|string $paths
58
+     * @param string $paths
59 59
      */
60 60
     public function __construct($paths)
61 61
     {
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\Mapping\Driver;
23 23
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
             return $this->classNames;
93 93
         }
94 94
 
95
-        if (!$this->paths) {
95
+        if ( ! $this->paths) {
96 96
             throw MappingException::pathRequired();
97 97
         }
98 98
 
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
         $includedFiles = [];
101 101
 
102 102
         foreach ($this->paths as $path) {
103
-            if (!is_dir($path)) {
103
+            if ( ! is_dir($path)) {
104 104
                 throw MappingException::fileMappingDriversRequireConfiguredDirectoryPath($path);
105 105
             }
106 106
 
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
         foreach ($declared as $className) {
126 126
             $rc = new \ReflectionClass($className);
127 127
             $sourceFile = $rc->getFileName();
128
-            if (in_array($sourceFile, $includedFiles) && !$this->isTransient($className)) {
128
+            if (in_array($sourceFile, $includedFiles) && ! $this->isTransient($className)) {
129 129
                 $classes[] = $className;
130 130
             }
131 131
         }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/FieldMetadata.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
 
25 25
 use Doctrine\DBAL\Types\Type;
26 26
 use Doctrine\ORM\Reflection\ReflectionService;
27
-use Doctrine\ORM\Sequencing\Generator;
28 27
 
29 28
 class FieldMetadata extends LocalColumnMetadata implements Property
30 29
 {
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\Mapping;
24 24
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/ORMInvalidArgumentException.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -207,7 +207,6 @@
 block discarded – undo
207 207
 
208 208
     /**
209 209
      * @param ClassMetadata $targetClass
210
-     * @param array         $assoc
211 210
      * @param mixed         $actualValue
212 211
      *
213 212
      * @return self
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 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
 use Doctrine\ORM\Mapping\AssociationMetadata;
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      */
39 39
     static public function scheduleInsertForManagedEntity($entity)
40 40
     {
41
-        return new self("A managed+dirty entity " . self::objToStr($entity) . " can not be scheduled for insertion.");
41
+        return new self("A managed+dirty entity ".self::objToStr($entity)." can not be scheduled for insertion.");
42 42
     }
43 43
 
44 44
     /**
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     static public function scheduleInsertForRemovedEntity($entity)
50 50
     {
51
-        return new self("Removed entity " . self::objToStr($entity) . " can not be scheduled for insertion.");
51
+        return new self("Removed entity ".self::objToStr($entity)." can not be scheduled for insertion.");
52 52
     }
53 53
 
54 54
     /**
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      */
59 59
     static public function scheduleInsertTwice($entity)
60 60
     {
61
-        return new self("Entity " . self::objToStr($entity) . " can not be scheduled for insertion twice.");
61
+        return new self("Entity ".self::objToStr($entity)." can not be scheduled for insertion twice.");
62 62
     }
63 63
 
64 64
     /**
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     static public function entityWithoutIdentity($className, $entity)
71 71
     {
72 72
         return new self(
73
-            "The given entity of type '" . $className . "' (".self::objToStr($entity).") has no identity/no " .
73
+            "The given entity of type '".$className."' (".self::objToStr($entity).") has no identity/no ".
74 74
             "id values set. It cannot be added to the identity map."
75 75
         );
76 76
     }
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      */
83 83
     static public function readOnlyRequiresManagedEntity($entity)
84 84
     {
85
-        return new self("Only managed entities can be marked or checked as read only. But " . self::objToStr($entity) . " is not");
85
+        return new self("Only managed entities can be marked or checked as read only. But ".self::objToStr($entity)." is not");
86 86
     }
87 87
 
88 88
     /**
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
      */
139 139
     static public function entityNotManaged($entity)
140 140
     {
141
-        return new self("Entity " . self::objToStr($entity) . " is not managed. An entity is managed if its fetched " .
141
+        return new self("Entity ".self::objToStr($entity)." is not managed. An entity is managed if its fetched ".
142 142
             "from the database or registered as new through EntityManager#persist");
143 143
     }
144 144
 
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
      */
151 151
     static public function entityHasNoIdentity($entity, $operation)
152 152
     {
153
-        return new self("Entity has no identity, therefore " . $operation ." cannot be performed. " . self::objToStr($entity));
153
+        return new self("Entity has no identity, therefore ".$operation." cannot be performed. ".self::objToStr($entity));
154 154
     }
155 155
 
156 156
     /**
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
      */
162 162
     static public function entityIsRemoved($entity, $operation)
163 163
     {
164
-        return new self("Entity is removed, therefore " . $operation ." cannot be performed. " . self::objToStr($entity));
164
+        return new self("Entity is removed, therefore ".$operation." cannot be performed. ".self::objToStr($entity));
165 165
     }
166 166
 
167 167
     /**
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
      */
173 173
     static public function detachedEntityCannot($entity, $operation)
174 174
     {
175
-        return new self("Detached entity " . self::objToStr($entity) . " cannot be " . $operation);
175
+        return new self("Detached entity ".self::objToStr($entity)." cannot be ".$operation);
176 176
     }
177 177
 
178 178
     /**
@@ -184,8 +184,8 @@  discard block
 block discarded – undo
184 184
      */
185 185
     public static function invalidObject($context, $given, $parameterIndex = 1)
186 186
     {
187
-        return new self($context . ' expects parameter ' . $parameterIndex .
188
-            ' to be an entity object, '. gettype($given) . ' given.');
187
+        return new self($context.' expects parameter '.$parameterIndex.
188
+            ' to be an entity object, '.gettype($given).' given.');
189 189
     }
190 190
 
191 191
     /**
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
      */
194 194
     public static function invalidCompositeIdentifier()
195 195
     {
196
-        return new self("Binding an entity with a composite primary key to a query is not supported. " .
196
+        return new self("Binding an entity with a composite primary key to a query is not supported. ".
197 197
             "You should split the parameter into the explicit fields and bind them separately.");
198 198
     }
199 199
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/PersistentObject.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      * @param string $field
121 121
      * @param array  $args
122 122
      *
123
-     * @return object
123
+     * @return PersistentObject
124 124
      *
125 125
      * @throws \BadMethodCallException   When no persistent field exists by that name.
126 126
      * @throws \InvalidArgumentException When the wrong target object type is passed to an association.
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
      * @param string $field
208 208
      * @param array  $args
209 209
      *
210
-     * @return object
210
+     * @return PersistentObject
211 211
      *
212 212
      * @throws \BadMethodCallException
213 213
      * @throws \InvalidArgumentException
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 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
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
     {
107 107
         if ($entityManager !== self::$entityManager) {
108 108
             throw new \RuntimeException(
109
-                "Trying to use PersistentObject with different EntityManager instances. " .
109
+                "Trying to use PersistentObject with different EntityManager instances. ".
110 110
                 "Was PersistentObject::setEntityManager() called?"
111 111
             );
112 112
         }
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
 
132 132
         $property = $this->cm->getProperty($field);
133 133
 
134
-        if (! $property) {
134
+        if ( ! $property) {
135 135
             throw new \BadMethodCallException("no field with name '".$field."' exists on '".$this->cm->getClassName()."'");
136 136
         }
137 137
 
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 
171 171
         $property = $this->cm->getProperty($field);
172 172
 
173
-        if (! $property) {
173
+        if ( ! $property) {
174 174
             throw new \BadMethodCallException("no field with name '".$field."' exists on '".$this->cm->getClassName()."'");
175 175
         }
176 176
 
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
         $mappedByField    = $property->getMappedBy();
197 197
         $targetMetadata   = self::$entityManager->getClassMetadata($property->getTargetEntity());
198 198
         $targetProperty   = $targetMetadata->getProperty($mappedByField);
199
-        $setterMethodName = ($targetProperty instanceof ToManyAssociationMetadata ? 'add' : 'set') . $mappedByField;
199
+        $setterMethodName = ($targetProperty instanceof ToManyAssociationMetadata ? 'add' : 'set').$mappedByField;
200 200
 
201 201
         $targetObject->$setterMethodName($this);
202 202
     }
@@ -218,21 +218,21 @@  discard block
 block discarded – undo
218 218
 
219 219
         $property = $this->cm->getProperty($field);
220 220
 
221
-        if (! $property) {
221
+        if ( ! $property) {
222 222
             throw new \BadMethodCallException("no field with name '".$field."' exists on '".$this->cm->getClassName()."'");
223 223
         }
224 224
 
225
-        if (! ($property instanceof ToManyAssociationMetadata)) {
225
+        if ( ! ($property instanceof ToManyAssociationMetadata)) {
226 226
             throw new \BadMethodCallException("There is no method add".$field."() on ".$this->cm->getClassName());
227 227
         }
228 228
 
229 229
         $targetClassName = $property->getTargetEntity();
230 230
 
231
-        if (! ($args[0] instanceof $targetClassName)) {
231
+        if ( ! ($args[0] instanceof $targetClassName)) {
232 232
             throw new \InvalidArgumentException("Expected persistent object of type '".$targetClassName."'");
233 233
         }
234 234
 
235
-        if (! ($this->$field instanceof Collection)) {
235
+        if ( ! ($this->$field instanceof Collection)) {
236 236
             $this->$field = new ArrayCollection($this->$field ?: []);
237 237
         }
238 238
 
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
             return;
257 257
         }
258 258
 
259
-        if (!self::$entityManager) {
259
+        if ( ! self::$entityManager) {
260 260
             throw new \RuntimeException("No runtime entity manager set. Call PersistentObject#setEntityManager().");
261 261
         }
262 262
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Persisters/Collection/ManyToManyPersister.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
 namespace Doctrine\ORM\Persisters\Collection;
23 23
 
24 24
 use Doctrine\Common\Collections\Criteria;
25
-use Doctrine\ORM\Mapping\AssociationMetadata;
26 25
 use Doctrine\ORM\Mapping\ClassMetadata;
27 26
 use Doctrine\ORM\Mapping\ManyToManyAssociationMetadata;
28 27
 use Doctrine\ORM\Mapping\ToManyAssociationMetadata;
Please login to merge, or discard this patch.
Spacing   +44 added lines, -44 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\Persisters\Collection;
23 23
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     {
49 49
         $association = $collection->getMapping();
50 50
 
51
-        if (! $association->isOwningSide()) {
51
+        if ( ! $association->isOwningSide()) {
52 52
             return; // ignore inverse side
53 53
         }
54 54
 
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     {
74 74
         $association = $collection->getMapping();
75 75
 
76
-        if (! $association->isOwningSide()) {
76
+        if ( ! $association->isOwningSide()) {
77 77
             return; // ignore inverse side
78 78
         }
79 79
 
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     {
105 105
         $association = $collection->getMapping();
106 106
 
107
-        if (! ($association instanceof ToManyAssociationMetadata && $association->getIndexedBy())) {
107
+        if ( ! ($association instanceof ToManyAssociationMetadata && $association->getIndexedBy())) {
108 108
             throw new \BadMethodCallException("Selecting a collection by index is only supported on indexed collections.");
109 109
         }
110 110
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
             : $association->getMappedBy()
115 115
         ;
116 116
 
117
-        $criteria  = [
117
+        $criteria = [
118 118
             $mappedKey                   => $collection->getOwner(),
119 119
             $association->getIndexedBy() => $index,
120 120
         ];
@@ -150,11 +150,11 @@  discard block
 block discarded – undo
150 150
             $quotedColumnName = $this->platform->quoteIdentifier($joinColumn->getColumnName());
151 151
             $referencedName   = $joinColumn->getReferencedColumnName();
152 152
 
153
-            if (! $joinColumn->getType()) {
153
+            if ( ! $joinColumn->getType()) {
154 154
                 $joinColumn->setType(PersisterHelper::getTypeOfColumn($referencedName, $sourceClass, $this->em));
155 155
             }
156 156
 
157
-            $conditions[]   = 't.' . $quotedColumnName . ' = ?';
157
+            $conditions[]   = 't.'.$quotedColumnName.' = ?';
158 158
             $params[]       = $id[$sourceClass->fieldNames[$referencedName]];
159 159
             $types[]        = $joinColumn->getType();
160 160
         }
@@ -183,9 +183,9 @@  discard block
 block discarded – undo
183 183
         }*/
184 184
 
185 185
         $sql = 'SELECT COUNT(*)'
186
-            . ' FROM ' . $joinTableName . ' t'
186
+            . ' FROM '.$joinTableName.' t'
187 187
             . $joinTargetEntitySQL
188
-            . ' WHERE ' . implode(' AND ', $conditions);
188
+            . ' WHERE '.implode(' AND ', $conditions);
189 189
 
190 190
         return $this->conn->fetchColumn($sql, $params, 0, $types);
191 191
     }
@@ -207,13 +207,13 @@  discard block
 block discarded – undo
207 207
     {
208 208
         $association = $collection->getMapping();
209 209
 
210
-        if (! ($association instanceof ToManyAssociationMetadata && $association->getIndexedBy())) {
210
+        if ( ! ($association instanceof ToManyAssociationMetadata && $association->getIndexedBy())) {
211 211
             throw new \BadMethodCallException("Selecting a collection by index is only supported on indexed collections.");
212 212
         }
213 213
 
214 214
         list($quotedJoinTable, $whereClauses, $params, $types) = $this->getJoinTableRestrictionsWithKey($collection, $key, true);
215 215
 
216
-        $sql = 'SELECT 1 FROM ' . $quotedJoinTable . ' WHERE ' . implode(' AND ', $whereClauses);
216
+        $sql = 'SELECT 1 FROM '.$quotedJoinTable.' WHERE '.implode(' AND ', $whereClauses);
217 217
 
218 218
         return (bool) $this->conn->fetchColumn($sql, $params, 0, $types);
219 219
     }
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
 
230 230
         list($quotedJoinTable, $whereClauses, $params, $types) = $this->getJoinTableRestrictions($collection, $element, true);
231 231
 
232
-        $sql = 'SELECT 1 FROM ' . $quotedJoinTable . ' WHERE ' . implode(' AND ', $whereClauses);
232
+        $sql = 'SELECT 1 FROM '.$quotedJoinTable.' WHERE '.implode(' AND ', $whereClauses);
233 233
 
234 234
         return (bool) $this->conn->fetchColumn($sql, $params, 0, $types);
235 235
     }
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
 
246 246
         list($quotedJoinTable, $whereClauses, $params, $types) = $this->getJoinTableRestrictions($collection, $element, false);
247 247
 
248
-        $sql = 'DELETE FROM ' . $quotedJoinTable . ' WHERE ' . implode(' AND ', $whereClauses);
248
+        $sql = 'DELETE FROM '.$quotedJoinTable.' WHERE '.implode(' AND ', $whereClauses);
249 249
 
250 250
         return (bool) $this->conn->executeUpdate($sql, $params, $types);
251 251
     }
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
         $onConditions  = $this->getOnConditionSQL($association);
264 264
         $whereClauses  = $params = $types = [];
265 265
 
266
-        if (! $association->isOwningSide()) {
266
+        if ( ! $association->isOwningSide()) {
267 267
             $association = $targetClass->getProperty($association->getMappedBy());
268 268
             $joinColumns = $association->getJoinTable()->getInverseJoinColumns();
269 269
         } else {
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
             $quotedColumnName = $this->platform->quoteIdentifier($joinColumn->getColumnName());
275 275
             $referencedName   = $joinColumn->getReferencedColumnName();
276 276
 
277
-            if (! $joinColumn->getType()) {
277
+            if ( ! $joinColumn->getType()) {
278 278
                 $joinColumn->setType(
279 279
                     PersisterHelper::getTypeOfColumn($referencedName, $ownerMetadata, $this->em)
280 280
                 );
@@ -304,11 +304,11 @@  discard block
 block discarded – undo
304 304
 
305 305
         $resultSetMapping->addRootEntityFromClassMetadata($targetClass->getClassName(), 'te');
306 306
 
307
-        $sql = 'SELECT ' . $resultSetMapping->generateSelectClause()
308
-            . ' FROM ' . $tableName . ' te'
309
-            . ' JOIN ' . $joinTableName . ' t ON'
307
+        $sql = 'SELECT '.$resultSetMapping->generateSelectClause()
308
+            . ' FROM '.$tableName.' te'
309
+            . ' JOIN '.$joinTableName.' t ON'
310 310
             . implode(' AND ', $onConditions)
311
-            . ' WHERE ' . implode(' AND ', $whereClauses);
311
+            . ' WHERE '.implode(' AND ', $whereClauses);
312 312
 
313 313
         $sql .= $this->getOrderingSql($criteria, $targetClass);
314 314
         $sql .= $this->getLimitSql($criteria);
@@ -345,8 +345,8 @@  discard block
 block discarded – undo
345 345
 
346 346
         // A join is needed if there is filtering on the target entity
347 347
         $tableName = $rootClass->table->getQuotedQualifiedName($this->platform);
348
-        $joinSql   = ' JOIN ' . $tableName . ' te'
349
-            . ' ON' . implode(' AND ', $this->getOnConditionSQL($association));
348
+        $joinSql   = ' JOIN '.$tableName.' te'
349
+            . ' ON'.implode(' AND ', $this->getOnConditionSQL($association));
350 350
 
351 351
         return [$joinSql, $filterSql];
352 352
     }
@@ -365,18 +365,18 @@  discard block
 block discarded – undo
365 365
 
366 366
         foreach ($this->em->getFilters()->getEnabledFilters() as $filter) {
367 367
             if ($filterExpr = $filter->addFilterConstraint($targetEntity, $targetTableAlias)) {
368
-                $filterClauses[] = '(' . $filterExpr . ')';
368
+                $filterClauses[] = '('.$filterExpr.')';
369 369
             }
370 370
         }
371 371
 
372
-        if (! $filterClauses) {
372
+        if ( ! $filterClauses) {
373 373
             return '';
374 374
         }
375 375
 
376 376
         $filterSql = implode(' AND ', $filterClauses);
377 377
 
378 378
         return count($filterClauses) > 1
379
-            ? '(' . $filterSql . ')'
379
+            ? '('.$filterSql.')'
380 380
             : $filterSql
381 381
         ;
382 382
     }
@@ -407,7 +407,7 @@  discard block
 block discarded – undo
407 407
             $quotedColumnName           = $this->platform->quoteIdentifier($joinColumn->getColumnName());
408 408
             $quotedReferencedColumnName = $this->platform->quoteIdentifier($joinColumn->getReferencedColumnName());
409 409
 
410
-            $conditions[] = ' t.' . $quotedColumnName . ' = ' . 'te.' . $quotedReferencedColumnName;
410
+            $conditions[] = ' t.'.$quotedColumnName.' = '.'te.'.$quotedReferencedColumnName;
411 411
         }
412 412
 
413 413
         return $conditions;
@@ -429,7 +429,7 @@  discard block
 block discarded – undo
429 429
             $columns[] = $this->platform->quoteIdentifier($joinColumn->getColumnName());
430 430
         }
431 431
 
432
-        return 'DELETE FROM ' . $joinTableName . ' WHERE ' . implode(' = ? AND ', $columns) . ' = ?';
432
+        return 'DELETE FROM '.$joinTableName.' WHERE '.implode(' = ? AND ', $columns).' = ?';
433 433
     }
434 434
 
435 435
     /**
@@ -620,7 +620,7 @@  discard block
 block discarded – undo
620 620
         $sourceClass       = $this->em->getClassMetadata($owningAssociation->getSourceEntity());
621 621
         $targetClass       = $this->em->getClassMetadata($owningAssociation->getTargetEntity());
622 622
 
623
-        if (! $owningAssociation->isOwningSide()) {
623
+        if ( ! $owningAssociation->isOwningSide()) {
624 624
             $owningAssociation  = $targetClass->getProperty($owningAssociation->getMappedBy());
625 625
             $joinTable          = $owningAssociation->getJoinTable();
626 626
             $joinColumns        = $joinTable->getJoinColumns();
@@ -632,7 +632,7 @@  discard block
 block discarded – undo
632 632
         }
633 633
 
634 634
         $joinTableName   = $joinTable->getQuotedQualifiedName($this->platform);
635
-        $quotedJoinTable = $joinTableName . ' t';
635
+        $quotedJoinTable = $joinTableName.' t';
636 636
         $whereClauses    = [];
637 637
         $params          = [];
638 638
         $types           = [];
@@ -645,39 +645,39 @@  discard block
 block discarded – undo
645 645
                 $quotedColumnName           = $this->platform->quoteIdentifier($joinColumn->getColumnName());
646 646
                 $quotedReferencedColumnName = $this->platform->quoteIdentifier($joinColumn->getReferencedColumnName());
647 647
 
648
-                $joinConditions[] = ' t.' . $quotedColumnName . ' = ' . 'tr.' . $quotedReferencedColumnName;
648
+                $joinConditions[] = ' t.'.$quotedColumnName.' = '.'tr.'.$quotedReferencedColumnName;
649 649
             }
650 650
 
651 651
             $tableName        = $targetClass->table->getQuotedQualifiedName($this->platform);
652
-            $quotedJoinTable .= ' JOIN ' . $tableName . ' tr ON ' . implode(' AND ', $joinConditions);
652
+            $quotedJoinTable .= ' JOIN '.$tableName.' tr ON '.implode(' AND ', $joinConditions);
653 653
             $columnName       = $targetClass->getProperty($indexBy)->getColumnName();
654 654
 
655
-            $whereClauses[] = 'tr.' . $this->platform->quoteIdentifier($columnName) . ' = ?';
655
+            $whereClauses[] = 'tr.'.$this->platform->quoteIdentifier($columnName).' = ?';
656 656
             $params[]       = $key;
657 657
             $types[]        = PersisterHelper::getTypeOfColumn($columnName, $targetClass, $this->em);
658 658
         }
659 659
 
660 660
         foreach ($inverseJoinColumns as $joinColumn) {
661
-            if (! $joinColumn->getType()) {
661
+            if ( ! $joinColumn->getType()) {
662 662
                 $joinColumn->setType(
663 663
                     PersisterHelper::getTypeOfColumn($joinColumn->getReferencedColumnName(), $sourceClass, $this->em)
664 664
                 );
665 665
             }
666 666
 
667
-            $whereClauses[] = 't.' . $this->platform->quoteIdentifier($joinColumn->getColumnName()) . ' = ?';
667
+            $whereClauses[] = 't.'.$this->platform->quoteIdentifier($joinColumn->getColumnName()).' = ?';
668 668
             $params[]       = $id[$sourceClass->fieldNames[$joinColumn->getReferencedColumnName()]];
669 669
             $types[]        = $joinColumn->getType();
670 670
         }
671 671
 
672 672
         if ( ! $joinNeeded) {
673 673
             foreach ($joinColumns as $joinColumn) {
674
-                if (! $joinColumn->getType()) {
674
+                if ( ! $joinColumn->getType()) {
675 675
                     $joinColumn->setType(
676 676
                         PersisterHelper::getTypeOfColumn($joinColumn->getReferencedColumnName(), $targetClass, $this->em)
677 677
                     );
678 678
                 }
679 679
 
680
-                $whereClauses[] = 't.' . $this->platform->quoteIdentifier($joinColumn->getColumnName()) . ' = ?';
680
+                $whereClauses[] = 't.'.$this->platform->quoteIdentifier($joinColumn->getColumnName()).' = ?';
681 681
                 $params[]       = $key;
682 682
                 $types[]        = $joinColumn->getType();
683 683
             }
@@ -687,7 +687,7 @@  discard block
 block discarded – undo
687 687
             list($joinTargetEntitySQL, $filterSql) = $this->getFilterSql($association);
688 688
 
689 689
             if ($filterSql) {
690
-                $quotedJoinTable .= ' ' . $joinTargetEntitySQL;
690
+                $quotedJoinTable .= ' '.$joinTargetEntitySQL;
691 691
                 $whereClauses[] = $filterSql;
692 692
             }
693 693
         }
@@ -711,7 +711,7 @@  discard block
 block discarded – undo
711 711
         $association       = $collection->getMapping();
712 712
         $owningAssociation = $association;
713 713
 
714
-        if (! $association->isOwningSide()) {
714
+        if ( ! $association->isOwningSide()) {
715 715
             $sourceClass = $this->em->getClassMetadata($association->getTargetEntity());
716 716
             $targetClass = $this->em->getClassMetadata($association->getSourceEntity());
717 717
             $sourceId = $this->uow->getEntityIdentifier($element);
@@ -736,13 +736,13 @@  discard block
 block discarded – undo
736 736
             $quotedColumnName     = $this->platform->quoteIdentifier($joinColumn->getColumnName());
737 737
             $referencedColumnName = $joinColumn->getReferencedColumnName();
738 738
 
739
-            if (! $joinColumn->getType()) {
739
+            if ( ! $joinColumn->getType()) {
740 740
                 $joinColumn->setType(
741 741
                     PersisterHelper::getTypeOfColumn($referencedColumnName, $sourceClass, $this->em)
742 742
                 );
743 743
             }
744 744
 
745
-            $whereClauses[] = ($addFilters ? 't.' : '') . $quotedColumnName . ' = ?';
745
+            $whereClauses[] = ($addFilters ? 't.' : '').$quotedColumnName.' = ?';
746 746
             $params[]       = $sourceId[$sourceClass->fieldNames[$referencedColumnName]];
747 747
             $types[]        = $joinColumn->getType();
748 748
         }
@@ -751,13 +751,13 @@  discard block
 block discarded – undo
751 751
             $quotedColumnName     = $this->platform->quoteIdentifier($joinColumn->getColumnName());
752 752
             $referencedColumnName = $joinColumn->getReferencedColumnName();
753 753
 
754
-            if (! $joinColumn->getType()) {
754
+            if ( ! $joinColumn->getType()) {
755 755
                 $joinColumn->setType(
756 756
                     PersisterHelper::getTypeOfColumn($referencedColumnName, $targetClass, $this->em)
757 757
                 );
758 758
             }
759 759
 
760
-            $whereClauses[] = ($addFilters ? 't.' : '') . $quotedColumnName . ' = ?';
760
+            $whereClauses[] = ($addFilters ? 't.' : '').$quotedColumnName.' = ?';
761 761
             $params[]       = $targetId[$targetClass->fieldNames[$referencedColumnName]];
762 762
             $types[]        = $joinColumn->getType();
763 763
         }
@@ -768,7 +768,7 @@  discard block
 block discarded – undo
768 768
             list($joinTargetEntitySQL, $filterSql) = $this->getFilterSql($association);
769 769
 
770 770
             if ($filterSql) {
771
-                $quotedJoinTable .= ' ' . $joinTargetEntitySQL;
771
+                $quotedJoinTable .= ' '.$joinTargetEntitySQL;
772 772
                 $whereClauses[] = $filterSql;
773 773
             }
774 774
         }
@@ -817,10 +817,10 @@  discard block
 block discarded – undo
817 817
                 $property   = $targetClass->getProperty($name);
818 818
                 $columnName = $this->platform->quoteIdentifier($property->getColumnName());
819 819
 
820
-                $orderBy[] = $columnName . ' ' . $direction;
820
+                $orderBy[] = $columnName.' '.$direction;
821 821
             }
822 822
 
823
-            return ' ORDER BY ' . implode(', ', $orderBy);
823
+            return ' ORDER BY '.implode(', ', $orderBy);
824 824
         }
825 825
         return '';
826 826
     }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Persisters/Collection/OneToManyPersister.php 3 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
 namespace Doctrine\ORM\Persisters\Collection;
23 23
 
24 24
 use Doctrine\Common\Collections\Criteria;
25
-use Doctrine\ORM\Mapping\ColumnMetadata;
26 25
 use Doctrine\ORM\Mapping\InheritanceType;
27 26
 use Doctrine\ORM\Mapping\ToManyAssociationMetadata;
28 27
 use Doctrine\ORM\PersistentCollection;
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -145,9 +145,9 @@  discard block
 block discarded – undo
145 145
         return (bool) $persister->count($criteria);
146 146
     }
147 147
 
148
-     /**
149
-     * {@inheritdoc}
150
-     */
148
+        /**
149
+         * {@inheritdoc}
150
+         */
151 151
     public function contains(PersistentCollection $collection, $element)
152 152
     {
153 153
         if ( ! $this->isValidEntityState($element)) {
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
 
266 266
         // 2) Build insert table records into temporary table
267 267
         $dql   = ' SELECT t0.' . implode(', t0.', $rootClass->getIdentifierFieldNames())
268
-               . ' FROM ' . $targetClass->getClassName() . ' t0 WHERE t0.' . $association->getMappedBy() . ' = :owner';
268
+                . ' FROM ' . $targetClass->getClassName() . ' t0 WHERE t0.' . $association->getMappedBy() . ' = :owner';
269 269
         $query = $this->em->createQuery($dql)->setParameter('owner', $collection->getOwner());
270 270
 
271 271
         $statement  = 'INSERT INTO ' . $tempTable . ' (' . $idColumnNameList . ') ' . $query->getSQL();
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 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\Persisters\Collection;
23 23
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         // the entire collection with a new would trigger this operation.
48 48
         $association = $collection->getMapping();
49 49
 
50
-        if (! $association->isOrphanRemoval()) {
50
+        if ( ! $association->isOrphanRemoval()) {
51 51
             // Handling non-orphan removal should never happen, as @OneToMany
52 52
             // can only be inverse side. For owning side one to many, it is
53 53
             // required to have a join table, which would classify as a ManyToManyPersister.
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     {
80 80
         $association = $collection->getMapping();
81 81
 
82
-        if (! ($association instanceof ToManyAssociationMetadata && $association->getIndexedBy())) {
82
+        if ( ! ($association instanceof ToManyAssociationMetadata && $association->getIndexedBy())) {
83 83
             throw new \BadMethodCallException("Selecting a collection by index is only supported on indexed collections.");
84 84
         }
85 85
 
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
     {
129 129
         $association = $collection->getMapping();
130 130
 
131
-        if (! ($association instanceof ToManyAssociationMetadata && $association->getIndexedBy())) {
131
+        if ( ! ($association instanceof ToManyAssociationMetadata && $association->getIndexedBy())) {
132 132
             throw new \BadMethodCallException("Selecting a collection by index is only supported on indexed collections.");
133 133
         }
134 134
 
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
         // only works with single id identifier entities. Will throw an
138 138
         // exception in Entity Persisters if that is not the case for the
139 139
         // 'mappedBy' field.
140
-        $criteria  = [
140
+        $criteria = [
141 141
             $association->getMappedBy()  => $collection->getOwner(),
142 142
             $association->getIndexedBy() => $key,
143 143
         ];
@@ -174,12 +174,12 @@  discard block
 block discarded – undo
174 174
     {
175 175
         $association = $collection->getMapping();
176 176
 
177
-        if (! $association->isOrphanRemoval()) {
177
+        if ( ! $association->isOrphanRemoval()) {
178 178
             // no-op: this is not the owning side, therefore no operations should be applied
179 179
             return false;
180 180
         }
181 181
 
182
-        if (! $this->isValidEntityState($element)) {
182
+        if ( ! $this->isValidEntityState($element)) {
183 183
             return false;
184 184
         }
185 185
 
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
         }
220 220
 
221 221
         $tableName = $targetClass->table->getQuotedQualifiedName($this->platform);
222
-        $statement = 'DELETE FROM ' . $tableName . ' WHERE ' . implode(' = ? AND ', $columns) . ' = ?';
222
+        $statement = 'DELETE FROM '.$tableName.' WHERE '.implode(' = ? AND ', $columns).' = ?';
223 223
 
224 224
         return $this->conn->executeUpdate($statement, $parameters);
225 225
     }
@@ -258,17 +258,17 @@  discard block
 block discarded – undo
258 258
             ];
259 259
         }
260 260
 
261
-        $statement = $this->platform->getCreateTemporaryTableSnippetSQL() . ' ' . $tempTable
262
-            . ' (' . $this->platform->getColumnDeclarationListSQL($columnDefinitions) . ')';
261
+        $statement = $this->platform->getCreateTemporaryTableSnippetSQL().' '.$tempTable
262
+            . ' ('.$this->platform->getColumnDeclarationListSQL($columnDefinitions).')';
263 263
 
264 264
         $this->conn->executeUpdate($statement);
265 265
 
266 266
         // 2) Build insert table records into temporary table
267
-        $dql   = ' SELECT t0.' . implode(', t0.', $rootClass->getIdentifierFieldNames())
268
-               . ' FROM ' . $targetClass->getClassName() . ' t0 WHERE t0.' . $association->getMappedBy() . ' = :owner';
267
+        $dql   = ' SELECT t0.'.implode(', t0.', $rootClass->getIdentifierFieldNames())
268
+               . ' FROM '.$targetClass->getClassName().' t0 WHERE t0.'.$association->getMappedBy().' = :owner';
269 269
         $query = $this->em->createQuery($dql)->setParameter('owner', $collection->getOwner());
270 270
 
271
-        $statement  = 'INSERT INTO ' . $tempTable . ' (' . $idColumnNameList . ') ' . $query->getSQL();
271
+        $statement  = 'INSERT INTO '.$tempTable.' ('.$idColumnNameList.') '.$query->getSQL();
272 272
         $parameters = array_values($sourcePersister->getIdentifier($collection->getOwner()));
273 273
         $numDeleted = $this->conn->executeUpdate($statement, $parameters);
274 274
 
@@ -282,8 +282,8 @@  discard block
 block discarded – undo
282 282
         foreach (array_reverse($classNames) as $className) {
283 283
             $parentClass = $this->em->getClassMetadata($className);
284 284
             $tableName   = $parentClass->table->getQuotedQualifiedName($this->platform);
285
-            $statement   = 'DELETE FROM ' . $tableName . ' WHERE (' . $idColumnNameList . ')'
286
-                . ' IN (SELECT ' . $idColumnNameList . ' FROM ' . $tempTable . ')';
285
+            $statement   = 'DELETE FROM '.$tableName.' WHERE ('.$idColumnNameList.')'
286
+                . ' IN (SELECT '.$idColumnNameList.' FROM '.$tempTable.')';
287 287
 
288 288
             $this->conn->executeUpdate($statement);
289 289
         }
Please login to merge, or discard this patch.