| 1 | <?php |
||
| 12 | class KernelAwareInitializer implements ContextInitializer |
||
| 13 | { |
||
| 14 | /** @var KernelInterface */ |
||
| 15 | private $kernel; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param KernelInterface $kernel |
||
| 19 | */ |
||
| 20 | 2 | public function __construct(KernelInterface $kernel) |
|
| 24 | |||
| 25 | /** |
||
| 26 | * {@inheritdoc} |
||
| 27 | */ |
||
| 28 | 2 | public function initializeContext(Context $context) |
|
| 36 | } |
||
| 37 |