1 | <?php |
||
7 | class BeforeRenderEvent extends Event |
||
8 | { |
||
9 | /** |
||
10 | * @var string frontPath |
||
11 | */ |
||
12 | protected $frontPath; |
||
13 | |||
14 | /** |
||
15 | * @param string $frontPath |
||
16 | */ |
||
17 | 8 | public function __construct($frontPath) |
|
21 | |||
22 | /** |
||
23 | * @return string |
||
24 | */ |
||
25 | 8 | public function getFrontPath() |
|
29 | |||
30 | /** |
||
31 | * Set FrontPath |
||
32 | * |
||
33 | * @param string $frontPath |
||
34 | * |
||
35 | * @return $this |
||
36 | */ |
||
37 | public function setFrontPath($frontPath) |
||
43 | } |
||
44 |