| Total Complexity | 2 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | abstract class ViewWidget extends Widget implements ViewWidgetInterface |
||
| 22 | { |
||
| 23 | use ViewAwareTrait; |
||
| 24 | |||
| 25 | 6 | public function render(): string |
|
| 32 | ) |
||
| 33 | ); |
||
| 34 | } |
||
| 35 | |||
| 36 | abstract protected function process(): array; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @throws \Exception |
||
| 40 | */ |
||
| 41 | 7 | protected function configureOptions(OptionsResolver $resolver): void |
|
| 60 |