web/index.php line 30
<?php/** This file is part of the Thelia package.* http://www.thelia.net** (c) OpenStudio <info@thelia.net>** For the full copyright and license information, please view the LICENSE* file that was distributed with this source code.*/use Symfony\Component\Dotenv\Dotenv;use Symfony\Component\ErrorHandler\Debug;use Thelia\Core\HttpFoundation\Request;use Thelia\Core\Thelia;require dirname(__DIR__).'/vendor/autoload.php';(new Dotenv())->bootEnv(dirname(__DIR__).'/.env');if ($_SERVER['APP_DEBUG']) {umask(0000);Debug::enable();}$thelia = new App\Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);$request = Request::createFromGlobals();$response = $thelia->handle($request);$response->send();$thelia->terminate($request, $response);