Conditions | 5 |
Paths | 4 |
Total Lines | 19 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
36 | public function export() |
||
37 | { |
||
38 | $exportData = []; |
||
39 | foreach ($this->source as $data) { |
||
40 | $exportData[] = $data; |
||
41 | } |
||
42 | |||
43 | $this->writer->open(); |
||
44 | |||
45 | if (empty($exportData) && !empty($this->defaultHeaders)) { |
||
46 | $this->writer->write($this->defaultHeaders); |
||
47 | } else { |
||
48 | foreach ($exportData as $data) { |
||
49 | $this->writer->write($data); |
||
50 | } |
||
51 | } |
||
52 | |||
53 | $this->writer->close(); |
||
54 | } |
||
55 | |||
67 |