public function FormState::setStorage in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Form/FormState.php \Drupal\Core\Form\FormState::setStorage()
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
- core/
lib/ Drupal/ Core/ Form/ FormState.php, line 727
Class
- FormState
- Stores information about the state of a form.
Namespace
Drupal\Core\FormCode
public function setStorage(array $storage) {
$this->storage = $storage;
return $this;
}