| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function index(ServerRequestInterface $req, array $params, Application $app) |
||
|
2 ignored issues
–
show
|
|||
| 22 | { |
||
| 23 | $data = ['files' => $app->get('markdown.files'), 'window_title' => 'Flatdown - Index']; |
||
| 24 | |||
| 25 | return $app->get('templates')->render('index', $data); |
||
| 26 | } |
||
| 27 | |||
| 35 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.