You are here

public function FormState::getRebuildInfo in Drupal 9

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

Gets the rebuild info.

Return value

array The rebuild info.

Overrides FormStateInterface::getRebuildInfo

See also

\Drupal\Core\Form\FormState::$rebuild_info

1 call to FormState::getRebuildInfo()
FormState::addRebuildInfo in core/lib/Drupal/Core/Form/FormState.php
Adds a value to the rebuild info.

File

core/lib/Drupal/Core/Form/FormState.php, line 710

Class

FormState
Stores information about the state of a form.

Namespace

Drupal\Core\Form

Code

public function getRebuildInfo() {
  return $this->rebuild_info;
}