public/index.php line 7

Open in your IDE?
  1. <?php
  2. use App\Kernel;
  3. define('PATH_ROOT'dirname(__DIR__));
  4. require_once PATH_ROOT.'/config/env.php';
  5. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  6. return function (array $context) {
  7.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  8. };