public/index.php line 5

Open in your IDE?
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__) . '/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     if ($_SERVER['HTTP_HOST'] === 'test-history.grand-art.online') {
  6.         $context['APP_ENV'] = 'prod';
  7.         $context['APP_DEBUG'] = 0;
  8.     }
  9.     return new Kernel($context['APP_ENV'], (bool)$context['APP_DEBUG']);
  10. };