/**
* {@inheritdoc}
*/
public function setCache($form_build_id,
$form, FormStateInterface
$form_state) { $this->formCache->
setCache($form_build_id,
$form,
$form_state);
} /**
* {@inheritdoc}
*/
public function deleteCache($form_build_id) { $this->formCache->
deleteCache($form_build_id);
} /**
* {@inheritdoc}
*/
public function submitForm($form_arg, FormStateInterface &
$form_state) { $build_info =
$form_state->
getBuildInfo();
if (empty($build_info['args'
])) { $args =
func_get_args();
// Remove $form and $form_state from the arguments.
unset($args[0
],
$args[1
]);