You are here

public function SubFormState::getValidateHandlers in Authorization 8

Gets the validate handlers.

Return value

array An array of validate handlers.

Overrides FormStateInterface::getValidateHandlers

File

src/Form/SubFormState.php, line 792

Class

SubFormState
Represents the form state of a sub-form.

Namespace

Drupal\authorization\Form

Code

public function getValidateHandlers() : array {
  return $this->mainFormState
    ->getValidateHandlers();
}