Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class TestingPresenter extends Presenter |
||
12 | { |
||
13 | |||
14 | public function presenterTest(): string |
||
17 | } |
||
18 | |||
19 | public function presenterTest2(): string |
||
20 | { |
||
21 | return 'computed content 2'; |
||
22 | } |
||
23 | |||
24 | public $wasCalled = false; |
||
25 | |||
26 | public function presenterResult(): void |
||
29 | } |
||
30 | |||
31 | public static $actionPresenterFromConfigWasCalled = false; |
||
32 | |||
33 | public function presenterFromConfig(): void |
||
38 |