shlink/public/index.php
2018-03-26 18:49:28 +02:00

9 lines
249 B
PHP

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