Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function getFunctions(): array |
||
16 | { |
||
17 | return [ |
||
18 | new TwigFunction( |
||
19 | 'info_collection_captcha_is_enabled', |
||
20 | [CaptchaRuntime::class, 'isEnabled'] |
||
21 | ), |
||
22 | new TwigFunction( |
||
23 | 'info_collection_captcha_get_site_key', |
||
24 | [CaptchaRuntime::class, 'getSiteKey'] |
||
25 | ), |
||
26 | ]; |
||
27 | } |
||
28 | } |
||
29 |