public/index.php line 14

Open in your IDE?
  1. <?php
  2. /**
  3.  * This file is part of Synapse.
  4.  *
  5.  * Copyright (C) 2020-2021 Daniel Ménard
  6.  *
  7.  * For copyright and license information, please view the
  8.  * LICENSE file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. use App\Kernel;
  12. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  13. return function (array $context) {
  14.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  15. };