| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class Title extends AbstractUiElement |
||
| 11 | { |
||
| 12 | protected $type = 'title'; |
||
| 13 | |||
| 14 | public function getImage(): string |
||
| 15 | { |
||
| 16 | return '/bundles/monsieurbizsyliusricheditorplugin/images/ui_elements/text.svg'; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function getFields(): array |
||
| 20 | { |
||
| 21 | return ['content']; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function getFormClass(): string |
||
| 27 | } |
||
| 28 | } |
||
| 29 |