| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class DoubleImage extends AbstractUiElement |
||
| 11 | { |
||
| 12 | protected $type = 'double_image'; |
||
| 13 | |||
| 14 | public function getImage(): string |
||
| 17 | } |
||
| 18 | |||
| 19 | public function getFields(): array |
||
| 20 | { |
||
| 21 | return [ |
||
| 22 | 'first_image', 'first_alt', 'first_title', 'first_link', |
||
| 23 | 'second_image', 'second_alt', 'second_title', 'second_link' |
||
| 24 | ]; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function getFormClass(): string |
||
| 30 | } |
||
| 31 | } |
||
| 32 |