public function BasicForm::buildForm in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Entity/EntityResolverManagerTest.php \Drupal\Tests\Core\Entity\BasicForm::buildForm()
- 9 core/tests/Drupal/Tests/Core/Entity/EntityResolverManagerTest.php \Drupal\Tests\Core\Entity\BasicForm::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/ Entity/ EntityResolverManagerTest.php, line 524 - Contains \Drupal\Tests\Core\Entity\EntityResolverManagerTest.
Class
- BasicForm
- A basic form with a passed entity with an interface.
Namespace
Drupal\Tests\Core\EntityCode
public function buildForm(array $form, FormStateInterface $form_state, EntityInterface $entity_test = NULL) {
return [];
}