public/index.php line 10

Open in your IDE?
  1. <?php
  2. // if( $_SERVER['REMOTE_ADDR'] !== "5.50.90.39" && $_SERVER['REMOTE_ADDR'] !== "37.71.211.100"){
  3. //     include 'index_maintenance.php';
  4. //     exit();
  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. };