public/index.php line 8

Open in your IDE?
  1. <?php
  2. use App\Kernel;
  3. if (file_exists('../../crm/vendor/autoload_runtime.php')) {
  4.     require_once '../../crm/vendor/autoload_runtime.php';
  5. } else {
  6.     require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  7. }
  8. return function (array $context) {
  9.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  10. };