| Total Complexity | 2 | 
| Total Lines | 47 | 
| Duplicated Lines | 0 % | 
| Coverage | 0% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 12 | class DevelopmentController implements ContainerInjectableInterface  | 
            ||
| 13 | { | 
            ||
| 14 | use ContainerInjectableTrait;  | 
            ||
| 15 | |||
| 16 | |||
| 17 | |||
| 18 | /**  | 
            ||
| 19 | * Render views that are supported.  | 
            ||
| 20 | *  | 
            ||
| 21 | * @param array $args as a variadic to catch all arguments.  | 
            ||
| 22 | *  | 
            ||
| 23 | * @throws Anax\Route\Exception\NotFoundException when route is not found.  | 
            ||
| 24 | |||
| 25 | * @return object as the response.  | 
            ||
| 26 | *  | 
            ||
| 27 | * @SuppressWarnings(PHPMD.UnusedFormalParameter)  | 
            ||
| 28 | */  | 
            ||
| 29 | public function catchAll(...$args) : object  | 
            ||
| 62 | 
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.