Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2.0185 |
Changes | 0 |
1 | <?php |
||
10 | 3 | public function __invoke(ServerRequestInterface $req, array $params, Application $app) |
|
11 | { |
||
12 | 3 | $index_filename = $app->getConfig('content_path') . '/index.md'; |
|
13 | |||
14 | 3 | if (file_exists($index_filename)) { |
|
15 | return $app->get('markdown.page', [$index_filename]); |
||
16 | } else { |
||
17 | 3 | return $app->getResponse(302) |
|
18 | 3 | ->withHeader('location', $app->getConfig('base_url') . '/_index'); |
|
19 | } |
||
20 | } |
||
21 | |||
36 |