You are here

public function FormStateDecoratorBase::getRebuildInfo in Markdown 8.2

Gets the rebuild info.

Return value

array The rebuild info.

Overrides FormStateInterface::getRebuildInfo

See also

\Drupal\Core\Form\FormState::$rebuild_info

File

src/BcSupport/FormStateDecoratorBase.php, line 275

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\markdown\BcSupport

Code

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