| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | 182 | public function configureSchema(ConfigurationBuilderInterface $builder): void |
|
| 24 | { |
||
| 25 | 182 | $builder->addSchema('autolink', Expect::structure([ |
|
| 26 | 182 | 'allowed_protocols' => Expect::listOf('string')->default(['http', 'https', 'ftp'])->mergeDefaults(false), |
|
| 27 | 182 | 'default_protocol' => Expect::string()->default('http'), |
|
| 28 | 182 | ])); |
|
| 40 |