| 1 | <?php |
||
| 13 | abstract class ContainerAwareJob extends Job |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var KernelInterface |
||
| 17 | */ |
||
| 18 | private $kernel = NULL; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param array $kernelOptions |
||
| 22 | */ |
||
| 23 | public function setKernelOptions(array $kernelOptions) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * |
||
| 30 | */ |
||
| 31 | public function tearDown() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return ContainerInterface |
||
| 40 | */ |
||
| 41 | protected function getContainer() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return KernelInterface |
||
| 53 | */ |
||
| 54 | protected function createKernel() |
||
| 69 | } |
||
| 70 |