public FormStateDecoratorBase::setValidateHandlers(array $validate_handlers)
Sets the validate handlers.
Parameters
array $validate_handlers: An array of validate handlers.
Return value
$this
Overrides FormStateInterface::setValidateHandlers
File
- core/lib/Drupal/Core/Form/FormStateDecoratorBase.php, line 386
Class
- FormStateDecoratorBase
- Decorates another form state.
Namespace
Drupal\Core\Form
Code
1 2 3 4 5 | public function setValidateHandlers( array $validate_handlers ) { $this ->decoratedFormState->setValidateHandlers( $validate_handlers ); return $this ; } |
Please login to continue.