You are here

public function FormStateDecoratorBase::getCompleteForm in Markdown 8.2

Returns a reference to the complete form array.

Return value

array The complete form array.

Overrides FormStateInterface::getCompleteForm

File

src/BcSupport/FormStateDecoratorBase.php, line 449

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\markdown\BcSupport

Code

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