public/index.php line 8

Open in your IDE?
  1. <?php
  2. use App\Kernel;
  3. umask(0002);
  4. // 13-Oct-2016 Holger - added 'umask(0002);', see https://symfony.com/doc/current/setup/file_permissions.html
  5. require_once dirname(__DIR__) . '/vendor/autoload_runtime.php';
  6. return function (array $context) {
  7.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  8. };