You are here

public function SubFormState::getBuildInfo in Authorization 8

Returns the build info for the form.

Return value

array An array of build info.

Overrides FormStateInterface::getBuildInfo

See also

\Drupal\Core\Form\FormState::$build_info

File

src/Form/SubFormState.php, line 251

Class

SubFormState
Represents the form state of a sub-form.

Namespace

Drupal\authorization\Form

Code

public function getBuildInfo() {
  return $this->mainFormState
    ->getBuildInfo();
}