You are here

public function SubFormState::getSubmitHandlers in Authorization 8

Gets the submit handlers.

Return value

array An array of submit handlers.

Overrides FormStateInterface::getSubmitHandlers

File

src/Form/SubFormState.php, line 710

Class

SubFormState
Represents the form state of a sub-form.

Namespace

Drupal\authorization\Form

Code

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