public function DbLogFormInjectionTest::buildForm in Drupal 8
Same name and namespace in other branches
- 9 core/modules/dblog/tests/src/Kernel/DbLogFormInjectionTest.php \Drupal\Tests\dblog\Kernel\DbLogFormInjectionTest::buildForm()
- 10 core/modules/dblog/tests/src/Kernel/DbLogFormInjectionTest.php \Drupal\Tests\dblog\Kernel\DbLogFormInjectionTest::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/
modules/ dblog/ tests/ src/ Kernel/ DbLogFormInjectionTest.php, line 58
Class
- DbLogFormInjectionTest
- Tests serializing a form with an injected dblog logger instance.
Namespace
Drupal\Tests\dblog\KernelCode
public function buildForm(array $form, FormStateInterface $form_state) {
$form['#process'][] = [
$this,
'process',
];
return $form;
}