You are here

public function FormStateDecoratorBase::getTemporary in Markdown 8.2

Gets temporary data.

Return value

array Temporary data accessible during the current page request only.

Overrides FormStateInterface::getTemporary

File

src/BcSupport/FormStateDecoratorBase.php, line 348

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\markdown\BcSupport

Code

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