| 1 | <?php |
||
| 7 | class DownloadOperation implements OperationInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | protected $relativePath; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | protected $blobId; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var array |
||
| 21 | */ |
||
| 22 | protected $streamFilterConfigMap; |
||
| 23 | |||
| 24 | public function __construct(string $relativePath, string $blobId, array $streamFilterConfigMap = []) |
||
| 30 | |||
| 31 | public function execute(string $localBasePath, StorageAdapterInterface $storageAdapter): bool |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @codeCoverageIgnore |
||
| 51 | */ |
||
| 52 | public function __toString(): string |
||
| 58 | } |
||
| 59 |