| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class Layout extends PresentationModel implements HasPresenterInterface |
||
| 11 | { |
||
| 12 | /** @var string[] */ |
||
| 13 | protected $links = []; |
||
| 14 | |||
| 15 | /** @var string */ |
||
| 16 | protected $main_class = 'main--default'; |
||
| 17 | |||
| 18 | /** @var string */ |
||
| 19 | protected $navigation_class = 'navigation--default'; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Returns the name by which to resolve the presenter through the DI container. |
||
| 23 | * |
||
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | public function getPresenterName(): string |
||
| 31 |