You are here

public function FormStateDecoratorBase::getValidateHandlers in Markdown 8.2

Gets the validate handlers.

Return value

array An array of validate handlers.

Overrides FormStateInterface::getValidateHandlers

File

src/BcSupport/FormStateDecoratorBase.php, line 403

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\markdown\BcSupport

Code

public function getValidateHandlers() {
  return $this->decoratedFormState
    ->getValidateHandlers();
}