1 | <?php |
||
8 | class ViewReferenceEvent extends Event |
||
|
|||
9 | { |
||
10 | private $view; |
||
11 | |||
12 | /** |
||
13 | * ViewReferenceEvent constructor. |
||
14 | * |
||
15 | * @param WebViewInterface $view |
||
16 | */ |
||
17 | public function __construct(WebViewInterface $view) |
||
21 | |||
22 | /** |
||
23 | * @return WebViewInterface |
||
24 | */ |
||
25 | public function getView() |
||
29 | |||
30 | /** |
||
31 | * @param WebViewInterface $view |
||
32 | */ |
||
33 | public function setView(WebViewInterface $view) |
||
39 | } |
||
40 |