public/index.php line 10

Open in your IDE?
  1. <?php
  2. $method $_SERVER['REQUEST_METHOD'];
  3. if ($method === "OPTIONS") {
  4.         die();
  5. }
  6. use App\Kernel;
  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. };