shlink/public/index.php

13 lines
283 B
PHP
Raw Normal View History

2016-04-10 09:38:07 +02:00
<?php
2019-10-05 17:26:10 +02:00
2017-10-12 10:03:14 +02:00
declare(strict_types=1);
2018-03-26 18:49:28 +02:00
use Psr\Container\ContainerInterface;
2016-04-10 09:52:44 +02:00
use Zend\Expressive\Application;
2016-04-10 09:38:07 +02:00
2019-10-05 17:26:10 +02:00
(function () {
/** @var ContainerInterface $container */
$container = include __DIR__ . '/../config/container.php';
$container->get(Application::class)->run();
})();