public/index.php line 12

Open in your IDE?
  1. <?php
  2. // die("We're doing some server maintenance, but we'll be back up soon!");
  3. if (isset($_GET["natetest"])) {
  4. phpinfo();
  5. die();
  6. }
  7. use App\Kernel;
  8. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  9. return function (array $context) {
  10. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  11. };