Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | final class Embedded extends PresentationModel implements HasPresenterInterface |
||
10 | { |
||
11 | /** @var string */ |
||
12 | protected $subtitle = ''; |
||
13 | |||
14 | /** @var string */ |
||
15 | protected $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 |