Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2.0116 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | 1 | public function checkHeaders(CsvFile $csv): void |
|
18 | { |
||
19 | 1 | $csv->move(3); |
|
20 | 1 | $expected = ['c_INCOTERM', 'Descripción', 'Fecha inicio de vigencia', 'Fecha fin de vigencia']; |
|
21 | 1 | $headers = $csv->readLine(); |
|
22 | |||
23 | 1 | if ($expected !== $headers) { |
|
24 | throw new RuntimeException("The headers did not match on file {$this->sourceFile()}"); |
||
25 | } |
||
26 | |||
27 | 1 | $csv->next(); |
|
28 | } |
||
40 |