public/index.php line 14

Open in your IDE?
  1. <?php
  2. header_remove("Cache-Control");
  3. header_remove("Expires");
  4. header_remove("Last-Modified");
  5. header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
  6. header("Pragma: no-cache");
  7. header("Expires: 0");
  8. ?>
  9. <?php
  10. use App\Kernel;
  11. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  12. return function (array $context) {
  13.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  14. };