class Type extends Constraint
DEFAULT_GROUP | The name of the group given to all constraints with no explicit group. |
CLASS_CONSTRAINT | Marks a constraint that can be put onto classes. |
PROPERTY_CONSTRAINT | Marks a constraint that can be put onto properties. |
INVALID_TYPE_ERROR |
static protected | $errorNames | ||
mixed | $payload | Domain-specific data attached to a constraint. | from Constraint |
array | $groups | The groups that the constraint belongs to | from Constraint |
$message | |||
$type |
static string | getErrorName(string $errorCode) Returns the name of the given error code. | from Constraint |
__construct(mixed $options = null) Initializes the constraint with options. | from Constraint | |
__set(string $option, mixed $value) Sets the value of a lazily initialized option. | from Constraint | |
mixed | __get(string $option) Returns the value of a lazily initialized option. | from Constraint |
bool | __isset(string $option) | from Constraint |
addImplicitGroupName(string $group) Adds the given group if this constraint is in the Default group. | from Constraint | |
string | getDefaultOption() Returns the name of the default option. | |
array | getRequiredOptions() Returns the name of the required options. | |
string | validatedBy() Returns the name of the class that validates this constraint. | from Constraint |
string|array | getTargets() Returns whether the constraint can be put onto classes, properties or both. | from Constraint |
array | __sleep() Optimizes the serialized value to minimize storage space. | from Constraint |
Returns the name of the given error code.
string | $errorCode | The error code |
string | The name of the error code |
InvalidArgumentException | If the error code does not exist |
Initializes the constraint with options.
You should pass an associative array. The keys should be the names of existing properties in this class. The values should be the value for these properties.
Alternatively you can override the method getDefaultOption() to return the name of an existing property. If no associative array is passed, this property is set instead.
You can force that certain options are set by overriding getRequiredOptions() to return the names of these options. If any option is not set here, an exception is thrown.
mixed | $options | The options (as associative array) or the value for the default option (any other type) |
InvalidOptionsException | When you pass the names of non-existing options |
MissingOptionsException | When you don't pass any of the options returned by getRequiredOptions() |
ConstraintDefinitionException | When you don't pass an associative array, but getDefaultOption() returns null |
Sets the value of a lazily initialized option.
Corresponding properties are added to the object on first access. Hence this method will be called at most once per constraint instance and option name.
string | $option | The option name |
mixed | $value | The value to set |
InvalidOptionsException | If an invalid option name is given |
Returns the value of a lazily initialized option.
Corresponding properties are added to the object on first access. Hence this method will be called at most once per constraint instance and option name.
string | $option | The option name |
mixed | The value of the option |
InvalidOptionsException | If an invalid option name is given |
string | $option | The option name |
bool |
Adds the given group if this constraint is in the Default group.
string | $group |
Returns the name of the default option.
Override this method to define a default option.
string |
Returns the name of the required options.
Override this method if you want to define required options.
array |
Returns the name of the class that validates this constraint.
By default, this is the fully qualified name of the constraint class suffixed with "Validator". You can override this method to change that behaviour.
string |
Returns whether the constraint can be put onto classes, properties or both.
This method should return one or more of the constants Constraint::CLASS_CONSTRAINT and Constraint::PROPERTY_CONSTRAINT.
string|array | One or more constant values |
Optimizes the serialized value to minimize storage space.
array | The properties to serialize |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Component/Validator/Constraints/Type.html