You are here

public function FormStateDecoratorBase::getSubmitHandlers in Markdown 8.2

Gets the submit handlers.

Return value

array An array of submit handlers.

Overrides FormStateInterface::getSubmitHandlers

File

src/BcSupport/FormStateDecoratorBase.php, line 316

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\markdown\BcSupport

Code

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