Issues (655)

Branch: feature/doctrine-dbal4

public/index.php (5 issues)

1
<?php
0 ignored issues
show
Header blocks must be separated by a single blank line
Loading history...
2
use Surfnet\StepupMiddleware\Kernel;
3
4
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
0 ignored issues
show
Expected at least 1 space before "."; 0 found
Loading history...
Expected at least 1 space after "."; 0 found
Loading history...
5
require_once dirname(__DIR__).'/config/bootstrap.php';
0 ignored issues
show
Expected at least 1 space before "."; 0 found
Loading history...
Expected at least 1 space after "."; 0 found
Loading history...
6
7
return function (array $context) {
8
    return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
9
};
10