| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function buildSettings(SettingsBuilderInterface $builder) |
||
| 21 | { |
||
| 22 | $builder |
||
| 23 | ->setDefaults( |
||
| 24 | [ |
||
| 25 | 'hide_my_certificate_link' => 'false', |
||
| 26 | 'hide_header_footer' => 'false' |
||
| 27 | ] |
||
| 28 | ); |
||
| 29 | |||
| 30 | $allowedTypes = [ |
||
| 31 | 'hide_my_certificate_link' => ['string'], |
||
| 32 | ]; |
||
| 33 | $this->setMultipleAllowedTypes($allowedTypes, $builder); |
||
| 34 | } |
||
| 47 |