PHP Class Neos\Flow\Annotations\IgnoreValidation

By default no validation will be executed for the given argument. To gather validation results for further processing, the "evaluate" option can be set to true (while still ignoring any validation error).
Datei anzeigen Open project: neos/flow-development-collection

Public Properties

Property Type Description
$argumentName string Name of the argument to skip validation for. (Can be given as anonymous argument.)
$evaluate boolean Whether to evaluate the validation results of the argument

Public Methods

Method Description
__construct ( array $values )

Method Details

__construct() public method

public __construct ( array $values )
$values array

Property Details

$argumentName public_oe property

Name of the argument to skip validation for. (Can be given as anonymous argument.)
public string $argumentName
return string

$evaluate public_oe property

Whether to evaluate the validation results of the argument
public bool $evaluate
return boolean