public_html/index.php line 9

Open in your IDE?
  1. <?php
  2. use App\Kernel;
  3. if($_SERVER['REMOTE_ADDR'] == 'x66.153.210.188') {
  4.     echo "Maintenance mode has been activated. We will be right back.";
  5.     exit;
  6. }
  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. };