1 | <?php |
||
12 | class TemplateEvent extends AbstractEvent |
||
13 | { |
||
14 | /** |
||
15 | * |
||
16 | * @var Twital |
||
17 | */ |
||
18 | protected $twital; |
||
19 | /** |
||
20 | * |
||
21 | * @var Template |
||
22 | */ |
||
23 | protected $template; |
||
24 | |||
25 | public function __construct(Twital $twital, Template $template) |
||
30 | 488 | ||
31 | /** |
||
32 | * @return \Goetas\Twital\Twital |
||
33 | */ |
||
34 | public function getTwital() |
||
38 | |||
39 | /** |
||
40 | * @return \Goetas\Twital\Template |
||
41 | */ |
||
42 | public function getTemplate() |
||
46 | |||
47 | /** |
||
48 | * @param \Goetas\Twital\Template $template |
||
49 | * @return void |
||
50 | */ |
||
51 | public function setTemplate(Template $template) |
||
55 | } |
||
56 |