| Total Complexity | 1 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | final class Page extends PresentationModel implements HasPresenterInterface |
||
| 10 | { |
||
| 11 | /** @var string */ |
||
| 12 | protected $content = 'page_content'; |
||
| 13 | |||
| 14 | /** @var string */ |
||
| 15 | protected $title = 'page_title'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Returns the name by which to resolve the presenter through the DI container. |
||
| 19 | * |
||
| 20 | * @return string |
||
| 21 | */ |
||
| 22 | public function getPresenterName(): string |
||
| 27 |