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