public/index.php line 8

Open in your IDE?
  1. <?php
  2. //var_dump([]?true:false);
  3. //die();
  4. use App\Kernel;
  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. };