Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
17 | abstract class AbstractPresenter implements PresenterInterface |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * Presenter's name |
||
22 | * |
||
23 | * @var string |
||
24 | */ |
||
25 | private $presenterName = ''; |
||
26 | |||
27 | /** |
||
28 | * Method returns presenter's name |
||
29 | * |
||
30 | * @return string presenter's name |
||
31 | */ |
||
32 | public function getPresenterName(): string |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * Method returns presenter's name |
||
39 | * |
||
40 | * @return string presenter's name |
||
41 | */ |
||
42 | public function setPresenterName(string $presenterName): void |
||
47 |