@@ -5,8 +5,6 @@ |
||
5 | 5 | use Doctrine\Tests\Models\Quote\Address; |
6 | 6 | use Doctrine\Tests\Models\Quote\City; |
7 | 7 | use Doctrine\Tests\Models\Quote\FullAddress; |
8 | -use Doctrine\Tests\Models\Quote\Group; |
|
9 | -use Doctrine\Tests\Models\Quote\Phone; |
|
10 | 8 | use Doctrine\Tests\Models\Quote\User; |
11 | 9 | use Doctrine\Tests\OrmFunctionalTestCase; |
12 | 10 |
@@ -3,7 +3,6 @@ |
||
3 | 3 | namespace Doctrine\Tests; |
4 | 4 | |
5 | 5 | use Doctrine\Common\Cache\ArrayCache; |
6 | -use Doctrine\DBAL\Driver\PDOSqlite\Driver as SqliteDriver; |
|
7 | 6 | use Doctrine\DBAL\Logging\DebugStack; |
8 | 7 | use Doctrine\DBAL\Types\Type; |
9 | 8 | use Doctrine\ORM\Cache\CacheConfiguration; |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | $sql = $type->convertToPHPValueSQL($sql, $this->platform); |
77 | 77 | } |
78 | 78 | |
79 | - return $sql . ' AS ' . $columnAlias; |
|
79 | + return $sql.' AS '.$columnAlias; |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -94,6 +94,6 @@ discard block |
||
94 | 94 | |
95 | 95 | $this->currentPersisterContext->rsm->addMetaResult('r', $columnAlias, $joinColumnName, false, $type); |
96 | 96 | |
97 | - return $tableAlias . '.' . $quotedColumnName . ' AS ' . $columnAlias; |
|
97 | + return $tableAlias.'.'.$quotedColumnName.' AS '.$columnAlias; |
|
98 | 98 | } |
99 | 99 | } |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | $inheritedKeyColumns[] = $columnName; |
224 | 224 | } |
225 | 225 | } |
226 | - if (!empty($inheritedKeyColumns)) { |
|
226 | + if ( ! empty($inheritedKeyColumns)) { |
|
227 | 227 | // Add a FK constraint on the ID column |
228 | 228 | $table->addForeignKeyConstraint( |
229 | 229 | $this->quoteStrategy->getTableName( |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | } |
331 | 331 | } |
332 | 332 | |
333 | - if ( ! $this->platform->supportsSchemas() && ! $this->platform->canEmulateSchemas() ) { |
|
333 | + if ( ! $this->platform->supportsSchemas() && ! $this->platform->canEmulateSchemas()) { |
|
334 | 334 | $schema->visit(new RemoveNamespacedAssets()); |
335 | 335 | } |
336 | 336 | |
@@ -635,7 +635,7 @@ discard block |
||
635 | 635 | if ( ! $definingClass) { |
636 | 636 | throw new \Doctrine\ORM\ORMException( |
637 | 637 | "Column name `".$joinColumn['referencedColumnName']."` referenced for relation from ". |
638 | - $mapping['sourceEntity'] . " towards ". $mapping['targetEntity'] . " does not exist." |
|
638 | + $mapping['sourceEntity']." towards ".$mapping['targetEntity']." does not exist." |
|
639 | 639 | ); |
640 | 640 | } |
641 | 641 | |
@@ -667,7 +667,7 @@ discard block |
||
667 | 667 | $columnOptions = ['notnull' => false, 'columnDefinition' => $columnDef]; |
668 | 668 | |
669 | 669 | if (isset($joinColumn['nullable'])) { |
670 | - $columnOptions['notnull'] = !$joinColumn['nullable']; |
|
670 | + $columnOptions['notnull'] = ! $joinColumn['nullable']; |
|
671 | 671 | } |
672 | 672 | |
673 | 673 | if (isset($fieldMapping['options'])) { |
@@ -714,7 +714,7 @@ discard block |
||
714 | 714 | } |
715 | 715 | } |
716 | 716 | $blacklistedFks[$compositeName] = true; |
717 | - } elseif (!isset($blacklistedFks[$compositeName])) { |
|
717 | + } elseif ( ! isset($blacklistedFks[$compositeName])) { |
|
718 | 718 | $addedFks[$compositeName] = ['foreignTableName' => $foreignTableName, 'foreignColumns' => $foreignColumns]; |
719 | 719 | $theJoinTable->addUnnamedForeignKeyConstraint( |
720 | 720 | $foreignTableName, |
@@ -821,7 +821,7 @@ discard block |
||
821 | 821 | if ($table->hasPrimaryKey()) { |
822 | 822 | $columns = $table->getPrimaryKey()->getColumns(); |
823 | 823 | if (count($columns) == 1) { |
824 | - $checkSequence = $table->getName() . "_" . $columns[0] . "_seq"; |
|
824 | + $checkSequence = $table->getName()."_".$columns[0]."_seq"; |
|
825 | 825 | if ($fullSchema->hasSequence($checkSequence)) { |
826 | 826 | $visitor->acceptSequence($fullSchema->getSequence($checkSequence)); |
827 | 827 | } |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | $cacheAnnot = $classAnnotations[Mapping\Cache::class]; |
150 | 150 | $cacheMap = [ |
151 | 151 | 'region' => $cacheAnnot->region, |
152 | - 'usage' => constant('Doctrine\ORM\Mapping\ClassMetadata::CACHE_USAGE_' . $cacheAnnot->usage), |
|
152 | + 'usage' => constant('Doctrine\ORM\Mapping\ClassMetadata::CACHE_USAGE_'.$cacheAnnot->usage), |
|
153 | 153 | ]; |
154 | 154 | |
155 | 155 | $metadata->enableCache($cacheMap); |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | $inheritanceTypeAnnot = $classAnnotations[Mapping\InheritanceType::class]; |
238 | 238 | |
239 | 239 | $metadata->setInheritanceType( |
240 | - constant('Doctrine\ORM\Mapping\ClassMetadata::INHERITANCE_TYPE_' . $inheritanceTypeAnnot->value) |
|
240 | + constant('Doctrine\ORM\Mapping\ClassMetadata::INHERITANCE_TYPE_'.$inheritanceTypeAnnot->value) |
|
241 | 241 | ); |
242 | 242 | |
243 | 243 | if ($metadata->inheritanceType != Mapping\ClassMetadata::INHERITANCE_TYPE_NONE) { |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | // Evaluate DoctrineChangeTrackingPolicy annotation |
270 | 270 | if (isset($classAnnotations[Mapping\ChangeTrackingPolicy::class])) { |
271 | 271 | $changeTrackingAnnot = $classAnnotations[Mapping\ChangeTrackingPolicy::class]; |
272 | - $metadata->setChangeTrackingPolicy(constant('Doctrine\ORM\Mapping\ClassMetadata::CHANGETRACKING_' . $changeTrackingAnnot->value)); |
|
272 | + $metadata->setChangeTrackingPolicy(constant('Doctrine\ORM\Mapping\ClassMetadata::CHANGETRACKING_'.$changeTrackingAnnot->value)); |
|
273 | 273 | } |
274 | 274 | |
275 | 275 | // Evaluate annotations on properties/fields |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | $mapping['cache'] = $metadata->getAssociationCacheDefaults( |
294 | 294 | $mapping['fieldName'], |
295 | 295 | [ |
296 | - 'usage' => constant('Doctrine\ORM\Mapping\ClassMetadata::CACHE_USAGE_' . $cacheAnnot->usage), |
|
296 | + 'usage' => constant('Doctrine\ORM\Mapping\ClassMetadata::CACHE_USAGE_'.$cacheAnnot->usage), |
|
297 | 297 | 'region' => $cacheAnnot->region, |
298 | 298 | ] |
299 | 299 | ); |
@@ -323,7 +323,7 @@ discard block |
||
323 | 323 | } |
324 | 324 | |
325 | 325 | if ($generatedValueAnnot = $this->reader->getPropertyAnnotation($property, Mapping\GeneratedValue::class)) { |
326 | - $metadata->setIdGeneratorType(constant('Doctrine\ORM\Mapping\ClassMetadata::GENERATOR_TYPE_' . $generatedValueAnnot->strategy)); |
|
326 | + $metadata->setIdGeneratorType(constant('Doctrine\ORM\Mapping\ClassMetadata::GENERATOR_TYPE_'.$generatedValueAnnot->strategy)); |
|
327 | 327 | } |
328 | 328 | |
329 | 329 | if ($this->reader->getPropertyAnnotation($property, Mapping\Version::class)) { |
@@ -472,7 +472,7 @@ discard block |
||
472 | 472 | |
473 | 473 | // Check for `fetch` |
474 | 474 | if ($associationOverride->fetch) { |
475 | - $override['fetch'] = constant(Mapping\ClassMetadata::class . '::FETCH_' . $associationOverride->fetch); |
|
475 | + $override['fetch'] = constant(Mapping\ClassMetadata::class.'::FETCH_'.$associationOverride->fetch); |
|
476 | 476 | } |
477 | 477 | |
478 | 478 | $metadata->setAssociationOverride($fieldName, $override); |
@@ -516,7 +516,7 @@ discard block |
||
516 | 516 | } |
517 | 517 | |
518 | 518 | // Evaluate the listener using naming convention. |
519 | - if ( ! $hasMapping ) { |
|
519 | + if ( ! $hasMapping) { |
|
520 | 520 | EntityListenerBuilder::bindEntityListener($metadata, $listenerClassName); |
521 | 521 | } |
522 | 522 | } |
@@ -545,11 +545,11 @@ discard block |
||
545 | 545 | */ |
546 | 546 | private function getFetchMode($className, $fetchMode) |
547 | 547 | { |
548 | - if ( ! defined('Doctrine\ORM\Mapping\ClassMetadata::FETCH_' . $fetchMode)) { |
|
548 | + if ( ! defined('Doctrine\ORM\Mapping\ClassMetadata::FETCH_'.$fetchMode)) { |
|
549 | 549 | throw MappingException::invalidFetchMode($className, $fetchMode); |
550 | 550 | } |
551 | 551 | |
552 | - return constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_' . $fetchMode); |
|
552 | + return constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_'.$fetchMode); |
|
553 | 553 | } |
554 | 554 | |
555 | 555 | /** |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | // Evaluate named native queries |
110 | 110 | if (isset($element['namedNativeQueries'])) { |
111 | 111 | foreach ($element['namedNativeQueries'] as $name => $mappingElement) { |
112 | - if (!isset($mappingElement['name'])) { |
|
112 | + if ( ! isset($mappingElement['name'])) { |
|
113 | 113 | $mappingElement['name'] = $name; |
114 | 114 | } |
115 | 115 | $metadata->addNamedNativeQuery( |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | // Evaluate sql result set mappings |
127 | 127 | if (isset($element['sqlResultSetMappings'])) { |
128 | 128 | foreach ($element['sqlResultSetMappings'] as $name => $resultSetMapping) { |
129 | - if (!isset($resultSetMapping['name'])) { |
|
129 | + if ( ! isset($resultSetMapping['name'])) { |
|
130 | 130 | $resultSetMapping['name'] = $name; |
131 | 131 | } |
132 | 132 | |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | } |
174 | 174 | |
175 | 175 | if (isset($element['inheritanceType'])) { |
176 | - $metadata->setInheritanceType(constant('Doctrine\ORM\Mapping\ClassMetadata::INHERITANCE_TYPE_' . strtoupper($element['inheritanceType']))); |
|
176 | + $metadata->setInheritanceType(constant('Doctrine\ORM\Mapping\ClassMetadata::INHERITANCE_TYPE_'.strtoupper($element['inheritanceType']))); |
|
177 | 177 | |
178 | 178 | if ($metadata->inheritanceType != \Doctrine\ORM\Mapping\ClassMetadata::INHERITANCE_TYPE_NONE) { |
179 | 179 | // Evaluate discriminatorColumn |
@@ -362,7 +362,7 @@ discard block |
||
362 | 362 | } |
363 | 363 | |
364 | 364 | if (isset($oneToOneElement['fetch'])) { |
365 | - $mapping['fetch'] = constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_' . $oneToOneElement['fetch']); |
|
365 | + $mapping['fetch'] = constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_'.$oneToOneElement['fetch']); |
|
366 | 366 | } |
367 | 367 | |
368 | 368 | if (isset($oneToOneElement['mappedBy'])) { |
@@ -416,7 +416,7 @@ discard block |
||
416 | 416 | ]; |
417 | 417 | |
418 | 418 | if (isset($oneToManyElement['fetch'])) { |
419 | - $mapping['fetch'] = constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_' . $oneToManyElement['fetch']); |
|
419 | + $mapping['fetch'] = constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_'.$oneToManyElement['fetch']); |
|
420 | 420 | } |
421 | 421 | |
422 | 422 | if (isset($oneToManyElement['cascade'])) { |
@@ -458,7 +458,7 @@ discard block |
||
458 | 458 | } |
459 | 459 | |
460 | 460 | if (isset($manyToOneElement['fetch'])) { |
461 | - $mapping['fetch'] = constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_' . $manyToOneElement['fetch']); |
|
461 | + $mapping['fetch'] = constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_'.$manyToOneElement['fetch']); |
|
462 | 462 | } |
463 | 463 | |
464 | 464 | if (isset($manyToOneElement['inversedBy'])) { |
@@ -503,7 +503,7 @@ discard block |
||
503 | 503 | ]; |
504 | 504 | |
505 | 505 | if (isset($manyToManyElement['fetch'])) { |
506 | - $mapping['fetch'] = constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_' . $manyToManyElement['fetch']); |
|
506 | + $mapping['fetch'] = constant('Doctrine\ORM\Mapping\ClassMetadata::FETCH_'.$manyToManyElement['fetch']); |
|
507 | 507 | } |
508 | 508 | |
509 | 509 | if (isset($manyToManyElement['mappedBy'])) { |
@@ -573,7 +573,7 @@ discard block |
||
573 | 573 | if (isset($element['associationOverride']) && is_array($element['associationOverride'])) { |
574 | 574 | |
575 | 575 | foreach ($element['associationOverride'] as $fieldName => $associationOverrideElement) { |
576 | - $override = []; |
|
576 | + $override = []; |
|
577 | 577 | |
578 | 578 | // Check for joinColumn |
579 | 579 | if (isset($associationOverrideElement['joinColumn'])) { |
@@ -591,7 +591,7 @@ discard block |
||
591 | 591 | if (isset($associationOverrideElement['joinTable'])) { |
592 | 592 | |
593 | 593 | $joinTableElement = $associationOverrideElement['joinTable']; |
594 | - $joinTable = [ |
|
594 | + $joinTable = [ |
|
595 | 595 | 'name' => $joinTableElement['name'] |
596 | 596 | ]; |
597 | 597 | |
@@ -625,7 +625,7 @@ discard block |
||
625 | 625 | |
626 | 626 | // Check for `fetch` |
627 | 627 | if (isset($associationOverrideElement['fetch'])) { |
628 | - $override['fetch'] = constant(Metadata::class . '::FETCH_' . $associationOverrideElement['fetch']); |
|
628 | + $override['fetch'] = constant(Metadata::class.'::FETCH_'.$associationOverrideElement['fetch']); |
|
629 | 629 | } |
630 | 630 | |
631 | 631 | $metadata->setAssociationOverride($fieldName, $override); |
@@ -645,7 +645,7 @@ discard block |
||
645 | 645 | if (isset($element['lifecycleCallbacks'])) { |
646 | 646 | foreach ($element['lifecycleCallbacks'] as $type => $methods) { |
647 | 647 | foreach ($methods as $method) { |
648 | - $metadata->addLifecycleCallback($method, constant('Doctrine\ORM\Events::' . $type)); |
|
648 | + $metadata->addLifecycleCallback($method, constant('Doctrine\ORM\Events::'.$type)); |
|
649 | 649 | } |
650 | 650 | } |
651 | 651 | } |
@@ -787,12 +787,12 @@ discard block |
||
787 | 787 | $region = isset($cacheMapping['region']) ? (string) $cacheMapping['region'] : null; |
788 | 788 | $usage = isset($cacheMapping['usage']) ? strtoupper($cacheMapping['usage']) : null; |
789 | 789 | |
790 | - if ($usage && ! defined('Doctrine\ORM\Mapping\ClassMetadata::CACHE_USAGE_' . $usage)) { |
|
790 | + if ($usage && ! defined('Doctrine\ORM\Mapping\ClassMetadata::CACHE_USAGE_'.$usage)) { |
|
791 | 791 | throw new \InvalidArgumentException(sprintf('Invalid cache usage "%s"', $usage)); |
792 | 792 | } |
793 | 793 | |
794 | 794 | if ($usage) { |
795 | - $usage = constant('Doctrine\ORM\Mapping\ClassMetadata::CACHE_USAGE_' . $usage); |
|
795 | + $usage = constant('Doctrine\ORM\Mapping\ClassMetadata::CACHE_USAGE_'.$usage); |
|
796 | 796 | } |
797 | 797 | |
798 | 798 | return [ |
@@ -806,7 +806,7 @@ discard block |
||
806 | 806 | */ |
807 | 807 | protected function loadMappingFile($file) |
808 | 808 | { |
809 | - if (defined(Yaml::class . '::PARSE_KEYS_AS_STRINGS')) { |
|
809 | + if (defined(Yaml::class.'::PARSE_KEYS_AS_STRINGS')) { |
|
810 | 810 | return Yaml::parse(file_get_contents($file), Yaml::PARSE_KEYS_AS_STRINGS); |
811 | 811 | } |
812 | 812 |
@@ -117,6 +117,7 @@ discard block |
||
117 | 117 | } |
118 | 118 | |
119 | 119 | /** |
120 | + * @param string|false $columnPrefix |
|
120 | 121 | * @return ClassMetadataInfo |
121 | 122 | */ |
122 | 123 | private function generateIsbnEmbeddableFixture(array $embeddedClasses = [], $columnPrefix = null) |
@@ -1167,7 +1168,7 @@ discard block |
||
1167 | 1168 | |
1168 | 1169 | /** |
1169 | 1170 | * @param string $type |
1170 | - * @param \ReflectionProperty $method |
|
1171 | + * @param \ReflectionMethod $method |
|
1171 | 1172 | */ |
1172 | 1173 | private function assertPhpDocParamType($type, \ReflectionMethod $method) |
1173 | 1174 | { |