| Conditions | 1 |
| Paths | 1 |
| Total Lines | 31 |
| Code Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 22 | public function dataForProcessedConfiguration() |
||
| 23 | { |
||
| 24 | return [ |
||
| 25 | [ |
||
| 26 | [ |
||
| 27 | 'karser_recaptcha3' => [ |
||
| 28 | 'site_key' => 'key', |
||
| 29 | 'secret_key' => 'secret', |
||
| 30 | ] |
||
| 31 | ], |
||
| 32 | [ |
||
| 33 | 'site_key' => 'key', |
||
| 34 | 'secret_key' => 'secret', |
||
| 35 | 'score_threshold' => 0.5, |
||
| 36 | 'enabled' => true, |
||
| 37 | ], |
||
| 38 | ], |
||
| 39 | [ |
||
| 40 | [ |
||
| 41 | 'karser_recaptcha3' => [ |
||
| 42 | 'site_key' => 'key', |
||
| 43 | 'secret_key' => 'secret', |
||
| 44 | 'score_threshold' => 0.7, |
||
| 45 | 'enabled' => false, |
||
| 46 | ] |
||
| 47 | ], |
||
| 48 | [ |
||
| 49 | 'site_key' => 'key', |
||
| 50 | 'secret_key' => 'secret', |
||
| 51 | 'score_threshold' => 0.7, |
||
| 52 | 'enabled' => false, |
||
| 53 | ], |
||
| 58 |