| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 41 | public function showHelpMarkdown(Request $request, Response $response): Response |
||
|
|
|||
| 42 | { |
||
| 43 | $helpText = __DIR__ . '/../locale/' . env('APPLANG') . '/file/markdown-help.php'; |
||
| 44 | $content = file_get_contents($helpText); |
||
| 45 | |||
| 46 | return $this->renderResponse( |
||
| 47 | $response, |
||
| 48 | __("markdown_help", 'Markdown Help'), |
||
| 49 | $content, |
||
| 50 | 'layout-help.php' |
||
| 51 | ); |
||
| 54 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.