1 | <?php |
||
11 | class AsyncAction extends Job |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $class; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $method; |
||
22 | |||
23 | /** |
||
24 | * @var Parameter[] |
||
25 | */ |
||
26 | protected $parameters; |
||
27 | |||
28 | public function __construct($class, $method, array $parameters = []) |
||
36 | |||
37 | /** |
||
38 | * @return string |
||
39 | */ |
||
40 | public function getClass() |
||
44 | |||
45 | /** |
||
46 | * @return string |
||
47 | */ |
||
48 | public function getMethod() |
||
52 | |||
53 | /** |
||
54 | * @return Parameter[] |
||
55 | */ |
||
56 | public function getParameters() |
||
60 | |||
61 | /** |
||
62 | * @return array |
||
63 | */ |
||
64 | public function getParameterValues() |
||
70 | |||
71 | /** |
||
72 | * @return string |
||
73 | */ |
||
74 | public function __toString() |
||
78 | } |