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