Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
36 | protected function validateSyntax() |
||
37 | { |
||
38 | $this->fileHandle->rewind(); |
||
39 | |||
40 | $fields = array_filter(array_map('trim', explode(',', $this->fileHandle->current()))); |
||
41 | |||
42 | foreach ($this->fileHandle as $row) { |
||
43 | if (count($fields) != count(explode(',', $row))) { |
||
44 | throw ImportFileException::invalidSyntax($this->file->getFilename()); |
||
45 | } |
||
46 | } |
||
47 | } |
||
48 | |||
63 |