Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
25 | 3 | public function buildView(FormView $view, FormInterface $form, array $options): void |
|
26 | { |
||
27 | 3 | $view->vars['site_key'] = $this->siteKey; |
|
28 | 3 | $view->vars['enabled'] = $this->enabled; |
|
29 | 3 | $view->vars['action_name'] = $options['action_name']; |
|
30 | 3 | $view->vars['script_nonce_csp'] = $options['script_nonce_csp'] ?? ''; |
|
31 | } |
||
53 |