2016-04-10 09:38:07 +02:00
|
|
|
<?php
|
2016-04-17 20:27:24 +02:00
|
|
|
use Interop\Container\ContainerInterface;
|
2016-04-10 09:52:44 +02:00
|
|
|
use Zend\Expressive\Application;
|
2016-04-10 09:38:07 +02:00
|
|
|
|
2016-04-17 20:27:24 +02:00
|
|
|
/** @var ContainerInterface $container */
|
|
|
|
|
$container = include __DIR__ . '/../config/container.php';
|
2016-04-10 09:52:44 +02:00
|
|
|
/** @var Application $app */
|
2016-04-17 20:27:24 +02:00
|
|
|
$app = $container->get(Application::class);
|
2016-04-10 09:38:07 +02:00
|
|
|
$app->run();
|