public\index.php line 11

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Hephaestus software package.
  4.  * (c) Stephen Lewis
  5.  * For the full copyright and license information, please view the LICENSE
  6.  * file that was distributed with this source code.
  7.  */
  8. use App\Kernel;
  9. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  10. return function (array $context) {
  11.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  12. };