public function SubFormState::setCleanValueKeys in Authorization 8
Sets the keys of the form values that will be cleaned.
Parameters
array $keys: An array of form value keys to be cleaned.
Return value
$this
Overrides FormStateInterface::setCleanValueKeys
File
- src/
Form/ SubFormState.php, line 821
Class
- SubFormState
- Represents the form state of a sub-form.
Namespace
Drupal\authorization\FormCode
public function setCleanValueKeys(array $keys) {
$this->mainFormState
->setCleanValueKeys($keys);
return $this;
}