shlink/public/index.php
2017-10-12 10:03:20 +02:00

9 lines
260 B
PHP

<?php
declare(strict_types=1);
use Interop\Container\ContainerInterface;
use Zend\Expressive\Application;
/** @var ContainerInterface $container */
$container = include __DIR__ . '/../config/container.php';
$app = $container->get(Application::class)->run();