Conditions | 2 |
Paths | 2 |
Total Lines | 5 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
31 | function gllog( $message = null ) { |
||
1 ignored issue
–
show
|
|||
32 | $logger = GeminiLabs\Logger\Application::load()->log->logger(); |
||
33 | return func_num_args() > 0 |
||
34 | ? $logger->debug( func_get_arg(0) ) |
||
35 | : $logger; |
||
36 | } |
||
37 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.