| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 23 | public function configureSchema(ConfigurationBuilderInterface $builder): void |
||
| 24 | { |
||
| 25 | $builder->addSchema('twemoji', Expect::structure([ |
||
| 26 | 'base' => Expect::string('https://twemoji.maxcdn.com/v/latest'), |
||
| 27 | 'classes' => Expect::arrayOf('string')->default(['twemoji']), |
||
| 28 | 'size' => Expect::int()->nullable(), |
||
| 29 | 'type' => Expect::anyOf('png', 'svg')->default('svg'), |
||
| 30 | ])); |
||
| 38 |