public/index.php line 7

Open in your IDE?
  1. <?php
  2. use App\Kernel;
  3. use App\Listener\MaintenanceListener;
  4. use Symfony\Component\HttpFoundation\Response;
  5. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  6. return function (array $context) {
  7.     // Start disabled/maintenance check
  8.     $maintenance = (new MaintenanceListener(dirname(__DIR__)))->web();
  9.     if ($maintenance instanceof Response) {
  10.         $maintenance->send();
  11.         exit;
  12.     }
  13.     // End disabled/maintenance check
  14.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  15. };