1 | <?php |
||
24 | abstract class AbstractGearmanCommand extends Command |
||
25 | { |
||
26 | /** |
||
27 | * @var KernelInterface |
||
28 | * |
||
29 | * Kernel |
||
30 | */ |
||
31 | protected $kernel; |
||
32 | |||
33 | /** |
||
34 | * Set kernel |
||
35 | * |
||
36 | * @param KernelInterface $kernel Kernel |
||
37 | * |
||
38 | * @return AbstractGearmanCommand self Object |
||
39 | */ |
||
40 | 24 | public function setKernel(KernelInterface $kernel) |
|
46 | } |
||
47 |