Validator.php
59 list($validateTypeName, $validateOptions) = array_pad(preg_split('/:/', $validator, 2), 2, null);
87 throw new ConfigurationException("Configuration section 'Validators' does not contain a validator named: ".$validateTypeName);
static getValidateType($validateTypeName)
Get the ValidateType instance for the given name.
Definition: Validator.php:84
Validator is is the single entry point for validation.
Definition: Validator.php:23
ConfigurationException signals an exception in the configuration.
Definition: ConfigurationException.php:18
static getInstance($name, $dynamicConfiguration=[])
Definition: ObjectFactory.php:47
static validate($value, $validateDesc, $context=null)
Validate the given value against the given validateType description.
Definition: Validator.php:35
ObjectFactory implements the service locator pattern by wrapping a Factory instance and providing sta...
Definition: ObjectFactory.php:24