| 1 | <?php |
||
| 10 | class DownloadUtility |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var Filesystem |
||
| 14 | */ |
||
| 15 | private $filesystem; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param Filesystem $filesystem |
||
| 19 | */ |
||
| 20 | 1 | public function __construct(Filesystem $filesystem) |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @param MediaInterface $media |
||
| 27 | * @return StreamedResponse |
||
| 28 | */ |
||
| 29 | public function getStreamedResponse(MediaInterface $media) |
||
| 45 | } |
||
| 46 |