Total Complexity | 6 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
12 | class TestingView extends View |
||
13 | { |
||
14 | |||
15 | public function __construct(?HtmlTemplate $template = null, string $viewName = 'default') |
||
16 | { |
||
17 | parent::__construct($template, $viewName); |
||
18 | } |
||
19 | |||
20 | public function viewTest(): string |
||
23 | } |
||
24 | |||
25 | public function viewTest2(): string |
||
28 | } |
||
29 | |||
30 | public function viewTest3(): string |
||
33 | } |
||
34 | |||
35 | public function viewDefault(): string |
||
36 | { |
||
37 | return 'Default'; |
||
38 | } |
||
39 | |||
40 | public function viewMainFromConfig(): string |
||
43 | } |
||
44 | } |
||
45 |