@@ -284,7 +284,7 @@ discard block |
||
| 284 | 284 | $message = "The mapping of field '{$field}' is invalid: The option '{$expectedOption}' is required."; |
| 285 | 285 | |
| 286 | 286 | if ( ! empty($hint)) { |
| 287 | - $message .= ' (Hint: ' . $hint . ')'; |
|
| 287 | + $message .= ' (Hint: '.$hint.')'; |
|
| 288 | 288 | } |
| 289 | 289 | |
| 290 | 290 | return new self($message); |
@@ -314,7 +314,7 @@ discard block |
||
| 314 | 314 | */ |
| 315 | 315 | public static function reflectionFailure($entity, \ReflectionException $previousException) |
| 316 | 316 | { |
| 317 | - return new self('An error occurred in ' . $entity, 0, $previousException); |
|
| 317 | + return new self('An error occurred in '.$entity, 0, $previousException); |
|
| 318 | 318 | } |
| 319 | 319 | |
| 320 | 320 | /** |
@@ -325,8 +325,8 @@ discard block |
||
| 325 | 325 | */ |
| 326 | 326 | public static function joinColumnMustPointToMappedField($className, $joinColumn) |
| 327 | 327 | { |
| 328 | - return new self('The column ' . $joinColumn . ' must be mapped to a field in class ' |
|
| 329 | - . $className . ' since it is referenced by a join column of another class.'); |
|
| 328 | + return new self('The column '.$joinColumn.' must be mapped to a field in class ' |
|
| 329 | + . $className.' since it is referenced by a join column of another class.'); |
|
| 330 | 330 | } |
| 331 | 331 | |
| 332 | 332 | /** |
@@ -446,12 +446,12 @@ discard block |
||
| 446 | 446 | public static function fileMappingDriversRequireConfiguredDirectoryPath($path = null) |
| 447 | 447 | { |
| 448 | 448 | if ( ! empty($path)) { |
| 449 | - $path = '[' . $path . ']'; |
|
| 449 | + $path = '['.$path.']'; |
|
| 450 | 450 | } |
| 451 | 451 | |
| 452 | 452 | return new self( |
| 453 | - 'File mapping drivers must have a valid directory path, ' . |
|
| 454 | - 'however the given path ' . $path . ' seems to be incorrect!' |
|
| 453 | + 'File mapping drivers must have a valid directory path, '. |
|
| 454 | + 'however the given path '.$path.' seems to be incorrect!' |
|
| 455 | 455 | ); |
| 456 | 456 | } |
| 457 | 457 | |
@@ -482,11 +482,11 @@ discard block |
||
| 482 | 482 | public static function duplicateDiscriminatorEntry($className, array $entries, array $map) |
| 483 | 483 | { |
| 484 | 484 | return new self( |
| 485 | - "The entries " . implode(', ', $entries) . " in discriminator map of class '" . $className . "' is duplicated. " . |
|
| 486 | - "If the discriminator map is automatically generated you have to convert it to an explicit discriminator map now. " . |
|
| 487 | - "The entries of the current map are: @DiscriminatorMap({" . implode(', ', array_map( |
|
| 485 | + "The entries ".implode(', ', $entries)." in discriminator map of class '".$className."' is duplicated. ". |
|
| 486 | + "If the discriminator map is automatically generated you have to convert it to an explicit discriminator map now. ". |
|
| 487 | + "The entries of the current map are: @DiscriminatorMap({".implode(', ', array_map( |
|
| 488 | 488 | function($a, $b) { return "'$a': '$b'"; }, array_keys($map), array_values($map) |
| 489 | - )) . "})" |
|
| 489 | + ))."})" |
|
| 490 | 490 | ); |
| 491 | 491 | } |
| 492 | 492 | |
@@ -633,7 +633,7 @@ discard block |
||
| 633 | 633 | public static function illegalOrphanRemoval($className, $field) |
| 634 | 634 | { |
| 635 | 635 | return new self("Orphan removal is only allowed on one-to-one and one-to-many ". |
| 636 | - "associations, but " . $className."#" .$field . " is not."); |
|
| 636 | + "associations, but ".$className."#".$field." is not."); |
|
| 637 | 637 | } |
| 638 | 638 | |
| 639 | 639 | /** |
@@ -665,7 +665,7 @@ discard block |
||
| 665 | 665 | */ |
| 666 | 666 | public static function noInheritanceOnMappedSuperClass($className) |
| 667 | 667 | { |
| 668 | - return new self("It is not supported to define inheritance information on a mapped superclass '" . $className . "'."); |
|
| 668 | + return new self("It is not supported to define inheritance information on a mapped superclass '".$className."'."); |
|
| 669 | 669 | } |
| 670 | 670 | |
| 671 | 671 | /** |
@@ -677,8 +677,8 @@ discard block |
||
| 677 | 677 | public static function mappedClassNotPartOfDiscriminatorMap($className, $rootClassName) |
| 678 | 678 | { |
| 679 | 679 | return new self( |
| 680 | - "Entity '" . $className . "' has to be part of the discriminator map of '" . $rootClassName . "' " . |
|
| 681 | - "to be properly mapped in the inheritance hierarchy. Alternatively you can make '".$className."' an abstract class " . |
|
| 680 | + "Entity '".$className."' has to be part of the discriminator map of '".$rootClassName."' ". |
|
| 681 | + "to be properly mapped in the inheritance hierarchy. Alternatively you can make '".$className."' an abstract class ". |
|
| 682 | 682 | "to avoid this exception from occurring." |
| 683 | 683 | ); |
| 684 | 684 | } |
@@ -691,7 +691,7 @@ discard block |
||
| 691 | 691 | */ |
| 692 | 692 | public static function lifecycleCallbackMethodNotFound($className, $methodName) |
| 693 | 693 | { |
| 694 | - return new self("Entity '" . $className . "' has no method '" . $methodName . "' to be registered as lifecycle callback."); |
|
| 694 | + return new self("Entity '".$className."' has no method '".$methodName."' to be registered as lifecycle callback."); |
|
| 695 | 695 | } |
| 696 | 696 | |
| 697 | 697 | /** |
@@ -737,7 +737,7 @@ discard block |
||
| 737 | 737 | */ |
| 738 | 738 | public static function invalidFetchMode($className, $annotation) |
| 739 | 739 | { |
| 740 | - return new self("Entity '" . $className . "' has a mapping with invalid fetch mode '" . $annotation . "'"); |
|
| 740 | + return new self("Entity '".$className."' has a mapping with invalid fetch mode '".$annotation."'"); |
|
| 741 | 741 | } |
| 742 | 742 | |
| 743 | 743 | /** |
@@ -747,7 +747,7 @@ discard block |
||
| 747 | 747 | */ |
| 748 | 748 | public static function compositeKeyAssignedIdGeneratorRequired($className) |
| 749 | 749 | { |
| 750 | - return new self("Entity '". $className . "' has a composite identifier but uses an ID generator other than manually assigning (Identity, Sequence). This is not supported."); |
|
| 750 | + return new self("Entity '".$className."' has a composite identifier but uses an ID generator other than manually assigning (Identity, Sequence). This is not supported."); |
|
| 751 | 751 | } |
| 752 | 752 | |
| 753 | 753 | /** |
@@ -759,7 +759,7 @@ discard block |
||
| 759 | 759 | */ |
| 760 | 760 | public static function invalidTargetEntityClass($targetEntity, $sourceEntity, $associationName) |
| 761 | 761 | { |
| 762 | - return new self("The target-entity " . $targetEntity . " cannot be found in '" . $sourceEntity."#".$associationName."'."); |
|
| 762 | + return new self("The target-entity ".$targetEntity." cannot be found in '".$sourceEntity."#".$associationName."'."); |
|
| 763 | 763 | } |
| 764 | 764 | |
| 765 | 765 | /** |
@@ -771,7 +771,7 @@ discard block |
||
| 771 | 771 | */ |
| 772 | 772 | public static function invalidCascadeOption(array $cascades, $className, $propertyName) |
| 773 | 773 | { |
| 774 | - $cascades = implode(", ", array_map(function ($e) { return "'" . $e . "'"; }, $cascades)); |
|
| 774 | + $cascades = implode(", ", array_map(function($e) { return "'".$e."'"; }, $cascades)); |
|
| 775 | 775 | |
| 776 | 776 | return new self(sprintf( |
| 777 | 777 | "You have specified invalid cascade options for %s::$%s: %s; available options: 'remove', 'persist', 'refresh', 'merge', and 'detach'", |
@@ -803,7 +803,7 @@ discard block |
||
| 803 | 803 | { |
| 804 | 804 | return new self( |
| 805 | 805 | sprintf( |
| 806 | - 'Infinite nesting detected for embedded property %s::%s. ' . |
|
| 806 | + 'Infinite nesting detected for embedded property %s::%s. '. |
|
| 807 | 807 | 'You cannot embed an embeddable from the same type inside an embeddable.', |
| 808 | 808 | $className, |
| 809 | 809 | $propertyName |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | */ |
| 72 | 72 | public function joinColumnName($propertyName, $className = null) |
| 73 | 73 | { |
| 74 | - return $propertyName . '_' . $this->referenceColumnName(); |
|
| 74 | + return $propertyName.'_'.$this->referenceColumnName(); |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | /** |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | */ |
| 80 | 80 | public function joinTableName($sourceEntity, $targetEntity, $propertyName = null) |
| 81 | 81 | { |
| 82 | - return strtolower($this->classToTableName($sourceEntity) . '_' . |
|
| 82 | + return strtolower($this->classToTableName($sourceEntity).'_'. |
|
| 83 | 83 | $this->classToTableName($targetEntity)); |
| 84 | 84 | } |
| 85 | 85 | |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | */ |
| 89 | 89 | public function joinKeyColumnName($entityName, $referencedColumnName = null) |
| 90 | 90 | { |
| 91 | - return strtolower($this->classToTableName($entityName) . '_' . |
|
| 91 | + return strtolower($this->classToTableName($entityName).'_'. |
|
| 92 | 92 | ($referencedColumnName ?: $this->referenceColumnName())); |
| 93 | 93 | } |
| 94 | 94 | } |
@@ -49,10 +49,10 @@ discard block |
||
| 49 | 49 | $tableName = $class->table['name']; |
| 50 | 50 | |
| 51 | 51 | if ( ! empty($class->table['schema'])) { |
| 52 | - $tableName = $class->table['schema'] . '.' . $class->table['name']; |
|
| 52 | + $tableName = $class->table['schema'].'.'.$class->table['name']; |
|
| 53 | 53 | |
| 54 | 54 | if ( ! $platform->supportsSchemas() && $platform->canEmulateSchemas()) { |
| 55 | - $tableName = $class->table['schema'] . '__' . $class->table['name']; |
|
| 55 | + $tableName = $class->table['schema'].'__'.$class->table['name']; |
|
| 56 | 56 | } |
| 57 | 57 | } |
| 58 | 58 | |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | $schema = ''; |
| 100 | 100 | |
| 101 | 101 | if (isset($association['joinTable']['schema'])) { |
| 102 | - $schema = $association['joinTable']['schema'] . '.'; |
|
| 102 | + $schema = $association['joinTable']['schema'].'.'; |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | $tableName = $association['joinTable']['name']; |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | $tableName = $platform->quoteIdentifier($tableName); |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | - return $schema . $tableName; |
|
| 111 | + return $schema.$tableName; |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | /** |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | // Association defined as Id field |
| 129 | 129 | $joinColumns = $class->associationMappings[$fieldName]['joinColumns']; |
| 130 | 130 | $assocQuotedColumnNames = array_map( |
| 131 | - function ($joinColumn) use ($platform) |
|
| 131 | + function($joinColumn) use ($platform) |
|
| 132 | 132 | { |
| 133 | 133 | return isset($joinColumn['quoted']) |
| 134 | 134 | ? $platform->quoteIdentifier($joinColumn['name']) |
@@ -153,10 +153,10 @@ discard block |
||
| 153 | 153 | // If the alias is to long, characters are cut off from the beginning. |
| 154 | 154 | // 3 ) Strip non alphanumeric characters |
| 155 | 155 | // 4 ) Prefix with "_" if the result its numeric |
| 156 | - $columnName = $columnName . '_' . $counter; |
|
| 156 | + $columnName = $columnName.'_'.$counter; |
|
| 157 | 157 | $columnName = substr($columnName, -$platform->getMaxIdentifierLength()); |
| 158 | 158 | $columnName = preg_replace('/[^A-Za-z0-9_]/', '', $columnName); |
| 159 | - $columnName = is_numeric($columnName) ? '_' . $columnName : $columnName; |
|
| 159 | + $columnName = is_numeric($columnName) ? '_'.$columnName : $columnName; |
|
| 160 | 160 | |
| 161 | 161 | return $platform->getSQLResultCasing($columnName); |
| 162 | 162 | } |
@@ -155,9 +155,9 @@ |
||
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | if ($property->isProtected()) { |
| 158 | - return "\0*\0" . $propertyName; |
|
| 158 | + return "\0*\0".$propertyName; |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | - return "\0" . $property->getDeclaringClass()->getName() . "\0" . $propertyName; |
|
| 161 | + return "\0".$property->getDeclaringClass()->getName()."\0".$propertyName; |
|
| 162 | 162 | } |
| 163 | 163 | } |
@@ -275,7 +275,7 @@ |
||
| 275 | 275 | { |
| 276 | 276 | $cm = $this->builder->getClassMetadata(); |
| 277 | 277 | if ($this->generatedValue) { |
| 278 | - $cm->setIdGeneratorType(constant('Doctrine\ORM\Mapping\ClassMetadata::GENERATOR_TYPE_' . $this->generatedValue)); |
|
| 278 | + $cm->setIdGeneratorType(constant('Doctrine\ORM\Mapping\ClassMetadata::GENERATOR_TYPE_'.$this->generatedValue)); |
|
| 279 | 279 | } |
| 280 | 280 | |
| 281 | 281 | if ($this->version) { |
@@ -150,7 +150,7 @@ |
||
| 150 | 150 | */ |
| 151 | 151 | public function addIndex(array $columns, $name) |
| 152 | 152 | { |
| 153 | - if (!isset($this->cm->table['indexes'])) { |
|
| 153 | + if ( ! isset($this->cm->table['indexes'])) { |
|
| 154 | 154 | $this->cm->table['indexes'] = array(); |
| 155 | 155 | } |
| 156 | 156 | |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | */ |
| 106 | 106 | protected function onNotFoundMetadata($className) |
| 107 | 107 | { |
| 108 | - if (! $this->evm->hasListeners(Events::onClassMetadataNotFound)) { |
|
| 108 | + if ( ! $this->evm->hasListeners(Events::onClassMetadataNotFound)) { |
|
| 109 | 109 | return; |
| 110 | 110 | } |
| 111 | 111 | |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | $this->completeIdGeneratorMapping($class); |
| 163 | 163 | } |
| 164 | 164 | |
| 165 | - if (!$class->isMappedSuperclass) { |
|
| 165 | + if ( ! $class->isMappedSuperclass) { |
|
| 166 | 166 | foreach ($class->embeddedClasses as $property => $embeddableClass) { |
| 167 | 167 | |
| 168 | 168 | if (isset($embeddableClass['inherited'])) { |
@@ -187,7 +187,7 @@ discard block |
||
| 187 | 187 | |
| 188 | 188 | $identifier = $embeddableMetadata->getIdentifier(); |
| 189 | 189 | |
| 190 | - if (! empty($identifier)) { |
|
| 190 | + if ( ! empty($identifier)) { |
|
| 191 | 191 | $this->inheritIdGeneratorMapping($class, $embeddableMetadata); |
| 192 | 192 | } |
| 193 | 193 | |
@@ -257,7 +257,7 @@ discard block |
||
| 257 | 257 | */ |
| 258 | 258 | protected function validateRuntimeMetadata($class, $parent) |
| 259 | 259 | { |
| 260 | - if ( ! $class->reflClass ) { |
|
| 260 | + if ( ! $class->reflClass) { |
|
| 261 | 261 | // only validate if there is a reflection class instance |
| 262 | 262 | return; |
| 263 | 263 | } |
@@ -267,7 +267,7 @@ discard block |
||
| 267 | 267 | $class->validateLifecycleCallbacks($this->getReflectionService()); |
| 268 | 268 | |
| 269 | 269 | // verify inheritance |
| 270 | - if ( ! $class->isMappedSuperclass && !$class->isInheritanceTypeNone()) { |
|
| 270 | + if ( ! $class->isMappedSuperclass && ! $class->isInheritanceTypeNone()) { |
|
| 271 | 271 | if ( ! $parent) { |
| 272 | 272 | if (count($class->discriminatorMap) == 0) { |
| 273 | 273 | throw MappingException::missingDiscriminatorMap($class->name); |
@@ -428,7 +428,7 @@ discard block |
||
| 428 | 428 | { |
| 429 | 429 | foreach ($parentClass->associationMappings as $field => $mapping) { |
| 430 | 430 | if ($parentClass->isMappedSuperclass) { |
| 431 | - if ($mapping['type'] & ClassMetadata::TO_MANY && !$mapping['isOwningSide']) { |
|
| 431 | + if ($mapping['type'] & ClassMetadata::TO_MANY && ! $mapping['isOwningSide']) { |
|
| 432 | 432 | throw MappingException::illegalToManyAssociationOnMappedSuperclass($parentClass->name, $field); |
| 433 | 433 | } |
| 434 | 434 | $mapping['sourceEntity'] = $subClass->name; |
@@ -476,11 +476,11 @@ discard block |
||
| 476 | 476 | $embeddableMetadata = $this->getMetadataFor($embeddableClass['class']); |
| 477 | 477 | |
| 478 | 478 | $parentClass->mapEmbedded(array( |
| 479 | - 'fieldName' => $prefix . '.' . $property, |
|
| 479 | + 'fieldName' => $prefix.'.'.$property, |
|
| 480 | 480 | 'class' => $embeddableMetadata->name, |
| 481 | 481 | 'columnPrefix' => $embeddableClass['columnPrefix'], |
| 482 | 482 | 'declaredField' => $embeddableClass['declaredField'] |
| 483 | - ? $prefix . '.' . $embeddableClass['declaredField'] |
|
| 483 | + ? $prefix.'.'.$embeddableClass['declaredField'] |
|
| 484 | 484 | : $prefix, |
| 485 | 485 | 'originalField' => $embeddableClass['originalField'] ?: $property, |
| 486 | 486 | )); |
@@ -497,7 +497,7 @@ discard block |
||
| 497 | 497 | */ |
| 498 | 498 | private function addInheritedIndexes(ClassMetadata $subClass, ClassMetadata $parentClass) |
| 499 | 499 | { |
| 500 | - if (! $parentClass->isMappedSuperclass) { |
|
| 500 | + if ( ! $parentClass->isMappedSuperclass) { |
|
| 501 | 501 | return; |
| 502 | 502 | } |
| 503 | 503 | |
@@ -696,14 +696,14 @@ discard block |
||
| 696 | 696 | case ClassMetadata::GENERATOR_TYPE_CUSTOM: |
| 697 | 697 | $definition = $class->customGeneratorDefinition; |
| 698 | 698 | if ( ! class_exists($definition['class'])) { |
| 699 | - throw new ORMException("Can't instantiate custom generator : " . |
|
| 699 | + throw new ORMException("Can't instantiate custom generator : ". |
|
| 700 | 700 | $definition['class']); |
| 701 | 701 | } |
| 702 | 702 | $class->setIdGenerator(new $definition['class']); |
| 703 | 703 | break; |
| 704 | 704 | |
| 705 | 705 | default: |
| 706 | - throw new ORMException("Unknown generator type: " . $class->generatorType); |
|
| 706 | + throw new ORMException("Unknown generator type: ".$class->generatorType); |
|
| 707 | 707 | } |
| 708 | 708 | } |
| 709 | 709 | |
@@ -753,7 +753,7 @@ discard block |
||
| 753 | 753 | */ |
| 754 | 754 | protected function getFqcnFromAlias($namespaceAlias, $simpleClassName) |
| 755 | 755 | { |
| 756 | - return $this->em->getConfiguration()->getEntityNamespace($namespaceAlias) . '\\' . $simpleClassName; |
|
| 756 | + return $this->em->getConfiguration()->getEntityNamespace($namespaceAlias).'\\'.$simpleClassName; |
|
| 757 | 757 | } |
| 758 | 758 | |
| 759 | 759 | /** |
@@ -777,7 +777,7 @@ discard block |
||
| 777 | 777 | */ |
| 778 | 778 | private function getTargetPlatform() |
| 779 | 779 | { |
| 780 | - if (!$this->targetPlatform) { |
|
| 780 | + if ( ! $this->targetPlatform) { |
|
| 781 | 781 | $this->targetPlatform = $this->em->getConnection()->getDatabasePlatform(); |
| 782 | 782 | } |
| 783 | 783 | |
@@ -67,7 +67,7 @@ |
||
| 67 | 67 | public function resolve($className) |
| 68 | 68 | { |
| 69 | 69 | if (isset($this->instances[$className = trim($className, '\\')])) { |
| 70 | - return $this->instances[$className]; |
|
| 70 | + return $this->instances[$className]; |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | return $this->instances[$className] = new $className(); |
@@ -19,7 +19,6 @@ |
||
| 19 | 19 | |
| 20 | 20 | namespace Doctrine\ORM\Query; |
| 21 | 21 | |
| 22 | -use Doctrine\DBAL\Types\Type; |
|
| 23 | 22 | use Doctrine\ORM\EntityManagerInterface; |
| 24 | 23 | use Doctrine\ORM\Mapping\ClassMetadataInfo; |
| 25 | 24 | use Doctrine\ORM\Mapping\MappingException; |