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
1 2 3 4 5 | public function setFormState( array $form_state_additions ) { $this ->decoratedFormState->setFormState( $form_state_additions ); return $this ; } |
Please login to continue.