Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
36 | 18 | public function __construct(array $image, $statusCode = Http::STATUS_OK) { |
|
37 | 18 | $name = $image['name']; |
|
38 | 18 | $this->preview = $image['preview']; |
|
39 | |||
40 | 18 | $this->setStatus($statusCode); |
|
41 | 18 | $this->addHeader('Content-type', $image['mimetype'] . '; charset=utf-8'); |
|
42 | 18 | $this->addHeader('Content-Disposition', |
|
43 | 18 | 'attachment; filename*=UTF-8\'\'' . rawurlencode($name) . '; filename="' |
|
44 | 18 | . rawurlencode($name) . '"' |
|
45 | ); |
||
46 | 18 | } |
|
47 | |||
63 |