Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
43 | public function send(IStoreFile $file, $forceDownload = TRUE) |
||
44 | { |
||
45 | try { |
||
46 | $this->createFileResponse($file, $forceDownload)->send($this->request, $this->response); |
||
47 | } catch (Application\BadRequestException $e) { |
||
48 | throw new FileDownloadFailedException($e->getMessage(), NULL, $e); |
||
49 | } |
||
50 | } |
||
51 | } |
||
52 |