You are here

public function FormStateDecoratorBase::getCleanValueKeys in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Form/FormStateDecoratorBase.php \Drupal\Core\Form\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();
}