public FormStateDecoratorBase::getCleanValueKeys()
Gets the keys of the form values that will be cleaned.
Return value
array An array of form value keys to be cleaned.
Overrides FormStateInterface::getCleanValueKeys
File
- core/lib/Drupal/Core/Form/FormStateDecoratorBase.php, line 718
Class
- FormStateDecoratorBase
- Decorates another form state.
Namespace
Drupal\Core\Form
Code
public function getCleanValueKeys() { return $this->decoratedFormState->getCleanValueKeys(); }
Please login to continue.