| 1 | <?php |
||
| 9 | class KernelWrapper implements KernelInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var Kernel |
||
| 13 | */ |
||
| 14 | private $kernel; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Constructor. |
||
| 18 | * |
||
| 19 | * @param Kernel $kernel |
||
| 20 | */ |
||
| 21 | public function __construct(Kernel $kernel) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public function handleRequest(RequestInterface $request) |
||
| 38 | } |
||
| 39 |