You are here

public function FormStateDecoratorBase::setStorage in Markdown 8.2

Sets the entire set of arbitrary data.

Parameters

array $storage: The entire set of arbitrary data to store for this form.

Return value

$this

Overrides FormStateInterface::setStorage

File

src/BcSupport/FormStateDecoratorBase.php, line 291

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\markdown\BcSupport

Code

public function setStorage(array $storage) {
  $this->decoratedFormState
    ->setStorage($storage);
  return $this;
}