| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 44 | protected function update() |
||
| 45 | { |
||
| 46 | $this->headers->set('Content-Disposition', sprintf('attachment; filename="%s"', $this->filename)); |
||
| 47 | if (!$this->headers->has('Content-Type')) { |
||
| 48 | $this->headers->set('Content-Type', 'text/csv'); |
||
| 49 | } |
||
| 50 | |||
| 51 | return $this->setContent($this->data); |
||
| 52 | } |
||
| 53 | } |