You are here

public function FormStateDecoratorBase::getFormObject in Markdown 8.2

Returns the form object that is responsible for building this form.

Return value

\Drupal\Core\Form\FormInterface The form object.

Overrides FormStateInterface::getFormObject

File

src/BcSupport/FormStateDecoratorBase.php, line 719

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\markdown\BcSupport

Code

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