public/index.php line 10

Open in your IDE?
  1. <?php
  2. use App\Kernel;
  3. // Force UTF-8 encoding
  4. mb_internal_encoding('UTF-8');
  5. mb_http_output('UTF-8');
  6. mb_regex_encoding('UTF-8');
  7. require_once dirname(__DIR__) . '/vendor/autoload_runtime.php';
  8. return function (array $context) {
  9.     return new Kernel($context['APP_ENV'], (bool)$context['APP_DEBUG']);
  10. };