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