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