public/index.php line 13

Open in your IDE?
  1. <?php
  2. use App\Kernel;
  3. if (!defined('APP_DEV')) {
  4.     define('APP_DEV''dev');
  5. }
  6. if (!defined('APP_PROD')) {
  7.     define('APP_PROD''prod');
  8. }
  9. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  10. return function (array $context) {
  11.     if (!defined('APP_ENV')) {
  12.         define('APP_ENV'$context['APP_ENV']);
  13.     }
  14.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  15. };