| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 16 | public function configureSchema(ConfigurationBuilderInterface $builder): void |
||
| 17 | { |
||
| 18 | $builder->addSchema('twemoji', Expect::structure([ |
||
| 19 | 'classes' => Expect::arrayOf('string')->default(['twemoji']), |
||
| 20 | 'classPrefix' => Expect::string('twemoji-')->nullable(), |
||
| 21 | 'icon' => Expect::bool(false)->nullable(), |
||
| 22 | 'relativeSvg' => Expect::bool(true), |
||
| 23 | 'size' => Expect::int()->nullable(), |
||
| 24 | 'type' => Expect::anyOf('png', 'svg')->default('svg'), |
||
| 25 | 'urlBase' => Expect::string('https://twemoji.maxcdn.com/v/latest'), |
||
| 26 | ])); |
||
| 40 |