Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function process(NNTP $nntp, string $groupID = '', string $guidChar = ''): void |
||
23 | { |
||
24 | if ((int) Settings::settingValue('lookupnfo') === 1) { |
||
25 | $this->nfo->processNfoFiles( |
||
26 | $nntp, |
||
27 | $groupID, |
||
28 | $guidChar, |
||
29 | (int) Settings::settingValue('lookupimdb'), |
||
30 | (int) Settings::settingValue('lookuptv') |
||
31 | ); |
||
35 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.