Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
7 | trait HasViewTrait |
||
8 | { |
||
9 | /** @var ViewEngineInterface $view */ |
||
10 | protected $view; |
||
11 | |||
12 | /** |
||
13 | * @param ViewEngineInterface $view |
||
14 | */ |
||
15 | 1 | public function setView(ViewEngineInterface $view): void |
|
16 | { |
||
17 | 1 | $this->view = $view; |
|
18 | 1 | } |
|
19 | |||
20 | /** |
||
21 | * @return ViewEngineInterface |
||
22 | */ |
||
23 | 1 | public function getView(): ViewEngineInterface |
|
26 | } |
||
27 | } |