class DateTime extends Constraint
Constants
| 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
|
Properties
| array | $groups | |
| $message |
Methods
|
__construct(mixed $options = null)
Initializes the constraint with options. |
from Constraint | |
|
__set($option, $value)
Unsupported operation. |
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 |
from Constraint |
| array |
getRequiredOptions()
Returns the name of the required options |
from Constraint |
| 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 |
Details
in Constraint at line 85
public
__construct(mixed $options = null)
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.
in Constraint at line 140
public
__set($option, $value)
Unsupported operation.
in Constraint at line 152
public
addImplicitGroupName(string $group)
Adds the given group if this constraint is in the Default group
in Constraint at line 169
public string
getDefaultOption()
Returns the name of the default option
Override this method to define a default option.
in Constraint at line 184
public array
getRequiredOptions()
Returns the name of the required options
Override this method if you want to define required options.
in Constraint at line 200
public string
validatedBy()
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.
in Constraint at line 216
public string|array
getTargets()
Returns whether the constraint can be put onto classes, properties or both
This method should return one or more of the constants Constraint::CLASSCONSTRAINT and Constraint::PROPERTYCONSTRAINT.