1 | <?php |
||
14 | class ApplicationWrapper implements KernelInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var Application |
||
18 | */ |
||
19 | private $application; |
||
20 | |||
21 | /** |
||
22 | * Constructor. |
||
23 | * |
||
24 | * @param Application $application The Zend Expressive application object to wrap |
||
25 | */ |
||
26 | public function __construct(Application $application) |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function handleRequest(RequestInterface $request) |
||
38 | } |
||
39 |