1 | <?php |
||
7 | trait HasViewTrait |
||
8 | { |
||
9 | /** @var ViewEngineInterface $view */ |
||
10 | protected $view; |
||
11 | |||
12 | /** |
||
13 | * @param ViewEngineInterface $view |
||
14 | */ |
||
15 | public function setView(ViewEngineInterface $view): void |
||
19 | |||
20 | /** |
||
21 | * @return ViewEngineInterface |
||
22 | */ |
||
23 | public function getView(): ViewEngineInterface |
||
27 | } |