anonymous()
last analyzed

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
nc 1
nop 1
dl 0
loc 2
c 0
b 0
f 0
1
<?php
2
use Surfnet\StepupMiddleware\Kernel;
0 ignored issues
show
Coding Style introduced by
Missing file doc comment
Loading history...
3
4
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
5
require_once dirname(__DIR__).'/config/bootstrap.php';
6
7
return function (array $context) {
8
    return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
9
};
10