You are here

public function PrepareCallbackTestForm::buildForm in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Form/FormStateTest.php \Drupal\Tests\Core\Form\PrepareCallbackTestForm::buildForm()
  2. 9 core/tests/Drupal/Tests/Core/Form/FormStateTest.php \Drupal\Tests\Core\Form\PrepareCallbackTestForm::buildForm()

Form constructor.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form structure.

Overrides FormInterface::buildForm

File

core/tests/Drupal/Tests/Core/Form/FormStateTest.php, line 444
Contains \Drupal\Tests\Core\Form\FormStateTest.

Class

PrepareCallbackTestForm
A test form used for the prepareCallback() tests.

Namespace

Drupal\Tests\Core\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  return [];
}