Total Complexity | 2 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | class SantaCruzBankParser extends AbstractParser |
||
12 | { |
||
13 | /** |
||
14 | * Eliminates unnecesary values into |
||
15 | * a Santa Cruz bank file and convert it |
||
16 | * to array. |
||
17 | * |
||
18 | * @param \MidasSoft\DominicanBankParser\Files\CSV $file |
||
19 | * |
||
20 | * @throws \MidasSoft\DominicanBankParser\Exceptions\InvalidArgumentException |
||
21 | * @throws \MidasSoft\DominicanBankParser\Exceptions\EmptyFileException |
||
22 | * |
||
23 | * @return array |
||
24 | */ |
||
25 | 3 | public function parse(AbstractFile $file) |
|
44 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.