<?php/** * This file is part of Synapse. * * Copyright (C) 2020-2021 Daniel Ménard * * For copyright and license information, please view the * LICENSE file that was distributed with this source code. */declare(strict_types=1);use App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) { return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};