Files
php-qml/examples/todo/symfony/public/index.php
T

10 lines
207 B
PHP
Raw Normal View History

<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context): Kernel {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};