Total Complexity | 2 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | class BHDBankParser extends AbstractParser |
||
12 | { |
||
13 | use InteractsWithArrayTrait; |
||
14 | |||
15 | /** |
||
16 | * Eliminates unnecesary values into |
||
17 | * a BHD bank file and convert it |
||
18 | * to array. |
||
19 | * |
||
20 | * @param \MidasSoft\DominicanBankParser\Files\CSV $file |
||
21 | * |
||
22 | * @throws \MidasSoft\DominicanBankParser\Exceptions\InvalidArgumentException |
||
23 | * @throws \MidasSoft\DominicanBankParser\Exceptions\EmptyFileException |
||
24 | * |
||
25 | * @return \MidasSoft\DominicanBankParser\Collections\DepositCollection |
||
26 | */ |
||
27 | 3 | public function parse(AbstractFile $file) |
|
46 |