| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | public function __construct( |
||
| 18 | $content, |
||
| 19 | $fileName = 'output.csv', |
||
| 20 | $contentType = 'text/csv', |
||
| 21 | $contentDisposition = 'attachment', |
||
| 22 | $status = self::HTTP_OK, |
||
| 23 | $headers = [] |
||
| 24 | ) { |
||
| 25 | parent::__construct( |
||
| 26 | $content, |
||
| 27 | $fileName, |
||
| 28 | $contentType, |
||
| 29 | $contentDisposition, |
||
| 30 | $status, |
||
| 31 | $headers |
||
| 32 | ); |
||
| 35 |