public function SubFormState::getCleanValueKeys in Authorization 8
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
- src/
Form/ SubFormState.php, line 814
Class
- SubFormState
- Represents the form state of a sub-form.
Namespace
Drupal\authorization\FormCode
public function getCleanValueKeys() : array {
return $this->mainFormState
->getCleanValueKeys();
}