class UniqueEntityValidator extends ConstraintValidator
Unique Entity Validator checks if one or a set of fields contain unique values.
PRETTY_DATE | Whether to format {@link \DateTime} objects as RFC-3339 dates ("Y-m-d H:i:s"). |
OBJECT_TO_STRING | Whether to cast objects with a "__toString()" method to strings. |
protected ExecutionContextInterface | $context | from ConstraintValidator |
initialize(ExecutionContextInterface $context) Initializes the constraint validator. | from ConstraintValidator | |
string | formatTypeOf(mixed $value) Returns a string representation of the type of the value. | from ConstraintValidator |
string | formatValue(mixed $value, int $format = 0) Returns a string representation of the value. | from ConstraintValidator |
string | formatValues(array $values, int $format = 0) Returns a string representation of a list of values. | from ConstraintValidator |
__construct(ManagerRegistry $registry) | ||
validate(object $entity, Constraint $constraint) |
Initializes the constraint validator.
ExecutionContextInterface | $context | The current validation context |
Returns a string representation of the type of the value.
This method should be used if you pass the type of a value as message parameter to a constraint violation. Note that such parameters should usually not be included in messages aimed at non-technical people.
mixed | $value | The value to return the type of |
string | The type of the value |
Returns a string representation of the value.
This method returns the equivalent PHP tokens for most scalar types (i.e. "false" for false, "1" for 1 etc.). Strings are always wrapped in double quotes ("). Objects, arrays and resources are formatted as "object", "array" and "resource". If the $format bitmask contains the PRETTY_DATE bit, then {@link \DateTime} objects will be formatted as RFC-3339 dates ("Y-m-d H:i:s").
Be careful when passing message parameters to a constraint violation that (may) contain objects, arrays or resources. These parameters should only be displayed for technical users. Non-technical users won't know what an "object", "array" or "resource" is and will be confused by the violation message.
mixed | $value | The value to format as string |
int | $format | A bitwise combination of the format constants in this class |
string | The string representation of the passed value |
Returns a string representation of a list of values.
Each of the values is converted to a string using {@link formatValue()}. The values are then concatenated with commas.
array | $values | A list of values |
int | $format | A bitwise combination of the format constants in this class |
string | The string representation of the value list |
formatValue() |
ManagerRegistry | $registry |
object | $entity | |
Constraint | $constraint | The constraint for the validation |
UnexpectedTypeException | |
ConstraintDefinitionException |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Bridge/Doctrine/Validator/Constraints/UniqueEntityValidator.html