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