Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
51 | protected function text(string $file = null):string{ |
||
|
|||
52 | $str = []; |
||
53 | |||
54 | foreach($this->matrix->matrix() as $row){ |
||
55 | $r = []; |
||
56 | |||
57 | foreach($row as $M_TYPE){ |
||
58 | $r[] = $this->moduleValues[$M_TYPE]; |
||
59 | } |
||
60 | |||
61 | $str[] = implode('', $r); |
||
62 | } |
||
63 | |||
64 | return implode($this->options->eol, $str); |
||
65 | } |
||
75 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.