public/index.php line 11

Open in your IDE?
  1. <?php
  2. use App\Kernel;
  3. header('Access-Control-Allow-Origin: *');
  4. header("Access-Control-Allow-Headers: *");
  5. header("Access-Control-Allow-Methods: *");
  6. header("Allow: *.sigmavaf.com.br");
  7. header("Allow: *.auditoriamunicipal.com.br");
  8. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  9. return function (array $context) {
  10.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  11. };