You are here

public function FormStateDecoratorBase::isRebuilding in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Form/FormStateDecoratorBase.php \Drupal\Core\Form\FormStateDecoratorBase::isRebuilding()

Determines if the form should be rebuilt after processing.

Return value

bool TRUE if the form should be rebuilt, FALSE otherwise.

Overrides FormStateInterface::isRebuilding

File

core/lib/Drupal/Core/Form/FormStateDecoratorBase.php, line 672

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\Core\Form

Code

public function isRebuilding() {
  return $this->decoratedFormState
    ->isRebuilding();
}