Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
22 | public function showHelp(Request $request, Response $response): Response |
||
23 | { |
||
24 | ob_start(); |
||
25 | require(__DIR__ . '/../locale/' . env('APPLANG') . '/file/help.php'); |
||
26 | $content = ob_get_clean(); |
||
27 | |||
28 | return $this->renderResponse( |
||
29 | $response, |
||
30 | __('help'), |
||
31 | $content, |
||
32 | 'layout-help.php' |
||
33 | ); |
||
54 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.