1 | <?php |
||
8 | class UploadOperation implements OperationInterface |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | protected $relativePath; |
||
14 | |||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $blobId; |
||
19 | |||
20 | /** |
||
21 | * @var array |
||
22 | */ |
||
23 | protected $streamFilterConfigMap; |
||
24 | |||
25 | public function __construct(string $relativePath, string $blobId, array $streamFilterConfigMap = []) |
||
31 | |||
32 | public function execute(string $localBasePath, ConnectionAdapterInterface $connection): bool |
||
56 | |||
57 | /** |
||
58 | * @codeCoverageIgnore |
||
59 | */ |
||
60 | public function __toString(): string |
||
66 | } |
||
67 |