1 | <?php |
||
14 | class MainframeKernel extends AbstractAdapter implements HttpKernelInterface |
||
15 | { |
||
16 | /** @var \Crummy\Phlack\Bridge\Symfony\HttpFoundation\RequestConverter */ |
||
17 | protected $converter; |
||
18 | |||
19 | /** |
||
20 | * @param Mainframe $mainframe |
||
21 | * @param RequestConverter $converter |
||
22 | */ |
||
23 | 2 | public function __construct(Mainframe $mainframe = null, RequestConverter $converter = null) |
|
29 | |||
30 | /** |
||
31 | * Mediates Request handling between HttpKernelInterface and the Mainframe. |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | 1 | public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true) |
|
46 | } |
||
47 |