FormStateDecoratorBase::setFormState

public FormStateDecoratorBase::setFormState(array $form_state_additions)

Sets the value of the form state.

Parameters

array $form_state_additions: An array of values to add to the form state.

Return value

$this

Overrides FormStateInterface::setFormState

File

core/lib/Drupal/Core/Form/FormStateDecoratorBase.php, line 23

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\Core\Form

Code

public function setFormState(array $form_state_additions) {
  $this->decoratedFormState->setFormState($form_state_additions);

  return $this;
}
doc_Drupal
2016-10-29 09:16:24
Comments
Leave a Comment

Please login to continue.