1 | <?php |
||
9 | class BeforeExecuteEvent extends Event |
||
10 | { |
||
11 | const EVENT_NAME = 'exec-wrapper.before_execute'; |
||
12 | /** @var ExecutionContext */ |
||
13 | private $params; |
||
14 | |||
15 | /** |
||
16 | * @param ExecutionContext $params |
||
17 | */ |
||
18 | 5 | public function __construct(ExecutionContext $params) |
|
22 | |||
23 | /** |
||
24 | * @return ExecutionContext |
||
25 | */ |
||
26 | 5 | public function getParams() |
|
30 | |||
31 | /** |
||
32 | * @param ExecutionContext $params |
||
33 | */ |
||
34 | public function setParams($params) |
||
38 | } |