web/ckfinder/core/connector/php/vendor/microsoft/azure-storage/src/Blob/BlobRestProxy.php 1 location
|
@@ 2903-2909 (lines=7) @@
|
| 2900 |
|
Resources::STATUS_OK, |
| 2901 |
|
Resources::EMPTY_STRING, |
| 2902 |
|
$options |
| 2903 |
|
)->then(function ($response) use ($dataSerializer) { |
| 2904 |
|
$parsed = $dataSerializer->unserialize($response->getBody()); |
| 2905 |
|
return ListPageBlobRangesResult::create( |
| 2906 |
|
HttpFormatter::formatHeaders($response->getHeaders()), |
| 2907 |
|
$parsed |
| 2908 |
|
); |
| 2909 |
|
}, null); |
| 2910 |
|
} |
| 2911 |
|
|
| 2912 |
|
/** |
web/ckfinder/core/connector/php/vendor/microsoft/azure-storage/src/File/FileRestProxy.php 1 location
|
@@ 2486-2490 (lines=5) @@
|
| 2483 |
|
Resources::STATUS_OK, |
| 2484 |
|
Resources::EMPTY_STRING, |
| 2485 |
|
$options |
| 2486 |
|
)->then(function ($response) use ($dataSerializer) { |
| 2487 |
|
$responseHeaders = HttpFormatter::formatHeaders($response->getHeaders()); |
| 2488 |
|
$parsed = $dataSerializer->unserialize($response->getBody()); |
| 2489 |
|
return ListFileRangesResult::create($responseHeaders, $parsed); |
| 2490 |
|
}, null); |
| 2491 |
|
} |
| 2492 |
|
|
| 2493 |
|
/** |