Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
31 | 12 | public function toArray() |
|
32 | { |
||
33 | 12 | $csvArray = []; |
|
34 | 12 | foreach ($this->sanitize() as $key => $line) { |
|
35 | 12 | $actualLine = str_getcsv(strip_tags(stripslashes(trim($line)))); |
|
36 | 12 | $csvArray[] = array_filter($actualLine); |
|
37 | } |
||
38 | |||
39 | 12 | return array_values(array_filter($csvArray)); |
|
40 | } |
||
42 |