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