1 | <?php |
||
23 | class GearmanWorkStartingEvent extends Event |
||
24 | { |
||
25 | /** |
||
26 | * @var array |
||
27 | * |
||
28 | * Gearman jobs running |
||
29 | */ |
||
30 | protected $jobs; |
||
31 | |||
32 | /** |
||
33 | * Construct method |
||
34 | * |
||
35 | * @param array $jobs Jobs |
||
36 | */ |
||
37 | 1 | public function __construct(array $jobs) |
|
41 | |||
42 | /** |
||
43 | * Get Gearman Work subscribed jobs |
||
44 | * |
||
45 | * @return array Subscribed jobs |
||
46 | */ |
||
47 | public function getJobs() |
||
51 | } |
||
52 |