1 | <?php |
||
12 | class ContentMarkdownController implements |
||
13 | ContainerInjectableInterface |
||
14 | { |
||
15 | use ContainerInjectableTrait; |
||
16 | |||
17 | |||
18 | |||
19 | /** |
||
20 | * Render a page using flat file content. |
||
21 | * |
||
22 | * @param array $args as a variadic to catch all arguments. |
||
23 | * |
||
24 | * @return mixed as null when flat file is not found and otherwise a |
||
25 | * complete response object with content to render. |
||
26 | * |
||
27 | * @SuppressWarnings(PHPMD.UnusedFormalParameter) |
||
28 | */ |
||
29 | public function catchAll(...$args) |
||
47 | } |
||
48 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.