| Conditions | 3 |
| Paths | 4 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function setData(array $data) |
||
| 19 | { |
||
| 20 | $output = fopen('php://temp', 'r+'); |
||
| 21 | foreach ($data as $row) { |
||
| 22 | fputcsv($output, $row); |
||
|
|
|||
| 23 | } |
||
| 24 | rewind($output); |
||
| 25 | $this->data = ''; |
||
| 26 | while ($line = fgets($output)) { |
||
| 27 | $this->data .= $line; |
||
| 28 | } |
||
| 29 | $this->data .= fgets($output); |
||
| 30 | return $this->update(); |
||
| 31 | } |
||
| 53 | } |