Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
15 | trait StatsTrait |
||
16 | { |
||
17 | use AbstractRecordsTrait; |
||
18 | |||
19 | /** |
||
20 | * @param PdfLetter|Record $letter |
||
21 | */ |
||
22 | public function compileForLetter($letter) |
||
|
|||
23 | { |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @param $letter |
||
28 | * @param $related |
||
29 | * @param $value |
||
30 | * @return StatTrait |
||
31 | */ |
||
32 | public function create($letter, $related, $value) |
||
40 | } |
||
41 | } |
||
42 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.