This repository has been archived by the owner on May 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from nowenL/release
Release for v0.10.1
- Loading branch information
Showing
277 changed files
with
293 additions
and
282 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,7 +85,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class BlobRestProxy extends ServiceRestProxy implements IBlob | ||
|
@@ -195,6 +195,10 @@ private function _getBlobUrl($container, $blob) | |
$encodedBlob = $container . '/' . $encodedBlob; | ||
} | ||
|
||
if (substr($encodedBlob, 0, 1) != '/' && substr($this->getUri(), -1, 1) != '/') | ||
{ | ||
$encodedBlob = '/' . $encodedBlob; | ||
} | ||
return $this->getUri() . $encodedBlob; | ||
} | ||
|
||
|
@@ -1352,11 +1356,13 @@ public function createBlockBlob($container, $blob, $content, $options = null) | |
$content = substr_replace($content, '', 0, $blockSize); | ||
} | ||
} | ||
$block = new Block(); | ||
$block->setBlockId(base64_encode(str_pad($counter++, 6, '0', STR_PAD_LEFT))); | ||
$block->setType('Uncommitted'); | ||
array_push($blockIds, $block); | ||
$this->createBlobBlock($container, $blob, $block->getBlockId(), $body); | ||
if (!empty($body)) { | ||
$block = new Block(); | ||
$block->setBlockId(base64_encode(str_pad($counter++, 6, '0', STR_PAD_LEFT))); | ||
$block->setType('Uncommitted'); | ||
array_push($blockIds, $block); | ||
$this->createBlobBlock($container, $blob, $block->getBlockId(), $body); | ||
} | ||
} | ||
$response = $this->commitBlobBlocks($container, $blob, $blockIds, $options); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
* @see http://msdn.microsoft.com/en-us/library/windowsazure/dd135733.aspx | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class AccessCondition | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class AccessPolicy | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class AcquireLeaseOptions extends BlobServiceOptions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class AcquireLeaseResult | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class Blob | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class BlobBlockType | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class BlobPrefix | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class BlobProperties | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class BlobServiceOptions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class BlobType | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class Block | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class BlockList | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class BreakLeaseResult | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class CommitBlobBlocksOptions extends BlobServiceOptions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class Container | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class ContainerAcl | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class ContainerProperties | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class CopyBlobOptions extends BlobServiceOptions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class CopyBlobResult | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class CreateBlobBlockOptions extends BlobServiceOptions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class CreateBlobOptions extends BlobServiceOptions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class CreateBlobPagesOptions extends BlobServiceOptions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class CreateBlobPagesResult | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class CreateBlobSnapshotOptions extends BlobServiceOptions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class CreateBlobSnapshotResult | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class CreateContainerOptions extends BlobServiceOptions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class DeleteBlobOptions extends BlobServiceOptions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class DeleteContainerOptions extends BlobServiceOptions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class GetBlobMetadataOptions extends BlobServiceOptions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class GetBlobMetadataResult | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class GetBlobOptions extends BlobServiceOptions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class GetBlobPropertiesOptions extends BlobServiceOptions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class GetBlobPropertiesResult | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class GetBlobResult | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class GetContainerAclResult | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class GetContainerPropertiesResult | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Azure Storage PHP SDK <[email protected]> | ||
* @copyright 2016 Microsoft Corporation | ||
* @license https://github.com/azure/azure-storage-php/LICENSE | ||
* @version Release: 0.10.0 | ||
* @version Release: 0.10.1 | ||
* @link https://github.com/azure/azure-storage-php | ||
*/ | ||
class LeaseMode | ||
|
Oops, something went wrong.