function QueueSerializationTest::buildForm
Same name and namespace in other branches
- 9 core/tests/Drupal/KernelTests/Core/Queue/QueueSerializationTest.php \Drupal\KernelTests\Core\Queue\QueueSerializationTest::buildForm()
- 8.9.x core/tests/Drupal/KernelTests/Core/Queue/QueueSerializationTest.php \Drupal\KernelTests\Core\Queue\QueueSerializationTest::buildForm()
- 11.x core/tests/Drupal/KernelTests/Core/Queue/QueueSerializationTest.php \Drupal\KernelTests\Core\Queue\QueueSerializationTest::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/ KernelTests/ Core/ Queue/ QueueSerializationTest.php, line 57
Class
- QueueSerializationTest
- Tests serializing a form with an injected DatabaseQueue instance.
Namespace
Drupal\KernelTests\Core\QueueCode
public function buildForm(array $form, FormStateInterface $form_state) {
$form['#process'][] = [
$this,
'process',
];
return $form;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.