$map * * @return MappingException */ public static function duplicateDiscriminatorEntry($className, array $entries, array $map) { return new self( 'The entries ' . implode(', ', $entries) . " in discriminator map of class '" . $className . "' is duplicated. " . 'If the discriminator map is automatically generated you have to convert it to an explicit discriminator map now. ' . 'The entries of the current map are: @DiscriminatorMap({' . implode(', ', array_map( static function ($a, $b) { return sprintf("'%s': '%s'", $a, $b); }, array_keys($map), array_values($map) )) . '})' ); } /** * @param string $className * * @return MappingException */ public static function missingDiscriminatorMap($className) { return new self(sprintf( "Entity class '%s' is using inheritance but no discriminator map was defined.", $className )); } /** * @param string $className * * @return MappingException */ public static function missingDiscriminatorColumn($className) { return new self(sprintf( "Entity class '%s' is using inheritance but no discriminator column was defined.", $className )); } /** * @param string $className * @param string $type * * @return MappingException */ public static function invalidDiscriminatorColumnType($className, $type) { return new self(sprintf( "Discriminator column type on entity class '%s' is not allowed to be '%s'. 'string' or 'integer' type variables are suggested!", $className, $type )); } /** * @param string $className * * @return MappingException */ public static function nameIsMandatoryForDiscriminatorColumns($className) { return new self(sprintf("Discriminator column name on entity class '%s' is not defined.", $className)); } /** * @param string $className * @param string $fieldName * * @return MappingException */ public static function cannotVersionIdField($className, $fieldName) { return new self(sprintf( "Setting Id field '%s' as versionable in entity class '%s' is not supported.", $fieldName, $className )); } /** * @param string $className * @param string $fieldName * @param string $type * * @return MappingException */ public static function sqlConversionNotAllowedForIdentifiers($className, $fieldName, $type) { return new self(sprintf( "It is not possible to set id field '%s' to type '%s' in entity class '%s'. The type '%s' requires conversion SQL which is not allowed for identifiers.", $fieldName, $type, $className, $type )); } /** * @param string $className * @param string $columnName * * @return MappingException */ public static function duplicateColumnName($className, $columnName) { return new self("Duplicate definition of column '" . $columnName . "' on entity '" . $className . "' in a field or discriminator column mapping."); } /** * @param string $className * @param string $field * * @return MappingException */ public static function illegalToManyAssociationOnMappedSuperclass($className, $field) { return new self("It is illegal to put an inverse side one-to-many or many-to-many association on mapped superclass '" . $className . '#' . $field . "'."); } /** * @param string $className * @param string $targetEntity * @param string $targetField * * @return MappingException */ public static function cannotMapCompositePrimaryKeyEntitiesAsForeignId($className, $targetEntity, $targetField) { return new self("It is not possible to map entity '" . $className . "' with a composite primary key " . "as part of the primary key of another entity '" . $targetEntity . '#' . $targetField . "'."); } /** * @param string $className * @param string $field * * @return MappingException */ public static function noSingleAssociationJoinColumnFound($className, $field) { return new self(sprintf("'%s#%s' is not an association with a single join column.", $className, $field)); } /** * @param string $className * @param string $column * * @return MappingException */ public static function noFieldNameFoundForColumn($className, $column) { return new self(sprintf( "Cannot find a field on '%s' that is mapped to column '%s'. Either the " . 'field does not exist or an association exists but it has multiple join columns.', $className, $column )); } /** * @param string $className * @param string $field * * @return MappingException */ public static function illegalOrphanRemovalOnIdentifierAssociation($className, $field) { return new self(sprintf( "The orphan removal option is not allowed on an association that is part of the identifier in '%s#%s'.", $className, $field )); } /** * @param string $className * @param string $field * * @return MappingException */ public static function illegalOrphanRemoval($className, $field) { return new self('Orphan removal is only allowed on one-to-one and one-to-many ' . 'associations, but ' . $className . '#' . $field . ' is not.'); } /** * @param string $className * @param string $field * * @return MappingException */ public static function illegalInverseIdentifierAssociation($className, $field) { return new self(sprintf( "An inverse association is not allowed to be identifier in '%s#%s'.", $className, $field )); } /** * @param string $className * @param string $field * * @return MappingException */ public static function illegalToManyIdentifierAssociation($className, $field) { return new self(sprintf( "Many-to-many or one-to-many associations are not allowed to be identifier in '%s#%s'.", $className, $field )); } /** * @param string $className * * @return MappingException */ public static function noInheritanceOnMappedSuperClass($className) { return new self("It is not supported to define inheritance information on a mapped superclass '" . $className . "'."); } /** * @param string $className * @param string $rootClassName * * @return MappingException */ public static function mappedClassNotPartOfDiscriminatorMap($className, $rootClassName) { return new self( "Entity '" . $className . "' has to be part of the discriminator map of '" . $rootClassName . "' " . "to be properly mapped in the inheritance hierarchy. Alternatively you can make '" . $className . "' an abstract class " . 'to avoid this exception from occurring.' ); } /** * @param string $className * @param string $methodName * * @return MappingException */ public static function lifecycleCallbackMethodNotFound($className, $methodName) { return new self("Entity '" . $className . "' has no method '" . $methodName . "' to be registered as lifecycle callback."); } /** * @param string $listenerName * @param string $className * * @return MappingException */ public static function entityListenerClassNotFound($listenerName, $className) { return new self(sprintf('Entity Listener "%s" declared on "%s" not found.', $listenerName, $className)); } /** * @param string $listenerName * @param string $methodName * @param string $className * * @return MappingException */ public static function entityListenerMethodNotFound($listenerName, $methodName, $className) { return new self(sprintf('Entity Listener "%s" declared on "%s" has no method "%s".', $listenerName, $className, $methodName)); } /** * @param string $listenerName * @param string $methodName * @param string $className * * @return MappingException */ public static function duplicateEntityListener($listenerName, $methodName, $className) { return new self(sprintf('Entity Listener "%s#%s()" in "%s" was already declared, but it must be declared only once.', $listenerName, $methodName, $className)); } /** * @param string $className * @param string $annotation * * @return MappingException */ public static function invalidFetchMode($className, $annotation) { return new self("Entity '" . $className . "' has a mapping with invalid fetch mode '" . $annotation . "'"); } public static function invalidGeneratedMode(string $annotation): MappingException { return new self("Invalid generated mode '" . $annotation . "'"); } /** * @param string $className * * @return MappingException */ public static function compositeKeyAssignedIdGeneratorRequired($className) { return new self("Entity '" . $className . "' has a composite identifier but uses an ID generator other than manually assigning (Identity, Sequence). This is not supported."); } /** * @param string $targetEntity * @param string $sourceEntity * @param string $associationName * * @return MappingException */ public static function invalidTargetEntityClass($targetEntity, $sourceEntity, $associationName) { return new self('The target-entity ' . $targetEntity . " cannot be found in '" . $sourceEntity . '#' . $associationName . "'."); } /** * @param string[] $cascades * @param string $className * @param string $propertyName * * @return MappingException */ public static function invalidCascadeOption(array $cascades, $className, $propertyName) { $cascades = implode(', ', array_map(static function ($e) { return "'" . $e . "'"; }, $cascades)); return new self(sprintf( "You have specified invalid cascade options for %s::$%s: %s; available options: 'remove', 'persist', 'refresh', 'merge', and 'detach'", $className, $propertyName, $cascades )); } /** * @param string $className * * @return MappingException */ public static function missingSequenceName($className) { return new self( sprintf('Missing "sequenceName" attribute for sequence id generator definition on class "%s".', $className) ); } /** * @param string $className * @param string $propertyName * * @return MappingException */ public static function infiniteEmbeddableNesting($className, $propertyName) { return new self( sprintf( 'Infinite nesting detected for embedded property %s::%s. ' . 'You cannot embed an embeddable from the same type inside an embeddable.', $className, $propertyName ) ); } /** * @param string $className * @param string $propertyName * * @return self */ public static function illegalOverrideOfInheritedProperty($className, $propertyName) { return new self( sprintf( 'Override for %s::%s is only allowed for attributes/associations ' . 'declared on a mapped superclass or a trait.', $className, $propertyName ) ); } /** * @return self */ public static function invalidIndexConfiguration($className, $indexName) { return new self( sprintf( 'Index %s for entity %s should contain columns or fields values, but not both.', $indexName, $className ) ); } /** * @return self */ public static function invalidUniqueConstraintConfiguration($className, $indexName) { return new self( sprintf( 'Unique constraint %s for entity %s should contain columns or fields values, but not both.', $indexName, $className ) ); } /** * @param mixed $givenValue */ public static function invalidOverrideType(string $expectdType, $givenValue): self { return new self(sprintf( 'Expected %s, but %s was given.', $expectdType, get_debug_type($givenValue) )); } public static function enumsRequirePhp81(string $className, string $fieldName): self { return new self(sprintf('Enum types require PHP 8.1 in %s::$%s', $className, $fieldName)); } public static function nonEnumTypeMapped(string $className, string $fieldName, string $enumType): self { return new self(sprintf( 'Attempting to map non-enum type %s as enum in entity %s::$%s', $enumType, $className, $fieldName )); } /** * @param class-string $className * @param class-string $enumType */ public static function invalidEnumValue( string $className, string $fieldName, string $value, string $enumType, ValueError $previous ): self { return new self(sprintf( <<<'EXCEPTION' Context: Trying to hydrate enum property "%s::$%s" Problem: Case "%s" is not listed in enum "%s" Solution: Either add the case to the enum type or migrate the database column to use another case of the enum EXCEPTION , $className, $fieldName, $value, $enumType ), 0, $previous); } }