You are here

public function FormStateDecoratorBase::setRebuildInfo in Markdown 8.2

Sets the rebuild info.

Parameters

array $rebuild_info: The rebuild info.

Return value

$this

Overrides FormStateInterface::setRebuildInfo

See also

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

File

src/BcSupport/FormStateDecoratorBase.php, line 266

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\markdown\BcSupport

Code

public function setRebuildInfo(array $rebuild_info) {
  $this->decoratedFormState
    ->setRebuildInfo($rebuild_info);
  return $this;
}