public/index.php line 38

Open in your IDE?
  1. <?php
  2. use App\Reservation\Kernel;
  3. use Symfony\Component\Dotenv\Dotenv;
  4. use Symfony\Component\HttpFoundation\Request;
  5. use Symfony\Component\ErrorHandler\Debug;
  6. require __DIR__.'/../vendor/autoload.php';
  7. // The check is to ensure we don't use .env in production
  8. if (!getenv('APP_ENV')) {
  9.     (new Dotenv())->load(__DIR__.'/../.env');
  10. }
  11. if (getenv('APP_DEBUG')) {
  12.     // WARNING: You should setup permissions the proper way!
  13.     // REMOVE the following PHP line and read
  14.     // https://symfony.com/doc/current/book/installation.html#checking-symfony-application-configuration-and-setup
  15.     umask(0000);
  16.     // This check prevents access to debug front controllers that are deployed by accident to production servers.
  17.     // Feel free to remove this, extend it, or make something more sophisticated.
  18. //    if (isset($_SERVER['HTTP_CLIENT_IP'])
  19. //        || isset($_SERVER['HTTP_X_FORWARDED_FOR'])
  20. //        || !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1']) || PHP_SAPI === 'cli-server')
  21. //    ) {
  22. //        header('HTTP/1.0 403 Forbidden');
  23. //        exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
  24. //    }
  25.     Debug::enable();
  26. }
  27. // Request::setTrustedProxies(['0.0.0.0/0'], Request::HEADER_FORWARDED);
  28. $kernel = new Kernel(getenv('APP_ENV'), getenv('APP_DEBUG'));
  29. $request Request::createFromGlobals();
  30. $response $kernel->handle($request);
  31. $response->send();
  32. $kernel->terminate($request$response);