You are here

public function SubFormState::setRebuildInfo in Authorization 8

Sets the rebuild info.

Parameters

array $rebuild_info: The rebuild info.

Return value

$this

Overrides FormStateInterface::setRebuildInfo

See also

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

File

src/Form/SubFormState.php, line 679

Class

SubFormState
Represents the form state of a sub-form.

Namespace

Drupal\authorization\Form

Code

public function setRebuildInfo(array $rebuild_info) {
  $this->mainFormState
    ->setRebuildInfo($rebuild_info);
  return $this;
}