You are here

public function SubFormState::addRebuildInfo in Authorization 8

Adds a value to the rebuild info.

Parameters

string $property: The property to use for the value.

mixed $value: The value to set.

Return value

$this

Overrides FormStateInterface::addRebuildInfo

File

src/Form/SubFormState.php, line 694

Class

SubFormState
Represents the form state of a sub-form.

Namespace

Drupal\authorization\Form

Code

public function addRebuildInfo($property, $value) {
  $this->mainFormState
    ->addRebuildInfo($property, $value);
  return $this;
}