Skip to content

Commit 3da2a01

Browse files
Prepare for release 0.4.1
1 parent b3468b7 commit 3da2a01

File tree

576 files changed

+912
-884
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

576 files changed

+912
-884
lines changed

Diff for: Defaults.php

+8-11
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
const CHANNEL_GET_CONTAINER = 'get';
3333
const CHANNEL_REST_CONTAINER = 'rest';
3434
const PACKAGE_NAME = 'WindowsAzure';
35-
const PACKAGE_RELEASE_VERSION = '0.4.0';
36-
const PACKAGE_API_VERSION = '0.4.0';
35+
const PACKAGE_RELEASE_VERSION = '0.4.1';
36+
const PACKAGE_API_VERSION = '0.4.1';
3737
const PACKAGE_RELEASE_STATE = 'beta';
3838
const PACKAGE_API_STATE = 'beta';
3939
const PACKAGE_MIN_PHP_VERSION = '5.3.0';
@@ -47,26 +47,23 @@
4747
It is build as a thin REST call wrapper where each server call maps to a single method call within the library.
4848
';
4949
const PACKAGE_RELEASE_NOTES = '
50-
- Added API support for Media Services:
51-
* Operations on Assets, Access policies, Locators, FileAssets, Jobs, Jobs templates, Tasks and Task templates
52-
> create, update, delete, list, get properties
53-
* Uploading files to Media Services storage
50+
- Implemented uploading of large files to Media Services
5451
';
5552
$dependencies = array(
5653
array('required', 'HTTP_Request2', 'pear.php.net'),
5754
array('required', 'Mail_Mime', 'pear.php.net'),
5855
array('required', 'Mail_mimeDecode', 'pear.php.net'),
5956
array('optional', 'PEAR_PackageFileManager2', 'pear.php.net'),
60-
array('optional', 'Pirum', 'pear.pirum-project.org')
57+
array('optional', 'Pirum', 'pear.pirum-project.org')
6158
);
6259
$ignore = array(
6360
'build/',
64-
'tests/',
65-
'channel/'
61+
'tests/',
62+
'channel/'
6663
);
6764
$include = array(
6865
'README.md',
69-
'LICENSE.txt',
70-
'WindowsAzure/'
66+
'LICENSE.txt',
67+
'WindowsAzure/'
7168
);
7269

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ To install the PHP Client Libraries for Microsoft Azure as a PEAR package, follo
9797
pear channel-discover pear.windowsazure.com
9898
3. Install the PEAR package:
9999

100-
pear install pear.windowsazure.com/WindowsAzure-0.4.0
100+
pear install pear.windowsazure.com/WindowsAzure-0.4.1
101101

102102

103103
# Usage

Diff for: WindowsAzure/Blob/BlobRestProxy.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
* @author Azure PHP SDK <[email protected]>
8585
* @copyright 2012 Microsoft Corporation
8686
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
87-
* @version Release: 0.4.0_2014-01
87+
* @version Release: 0.4.1_2015-02
8888
* @link https://github.com/windowsazure/azure-sdk-for-php
8989
*/
9090
class BlobRestProxy extends ServiceRestProxy implements IBlob

Diff for: WindowsAzure/Blob/Internal/IBlob.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @author Azure PHP SDK <[email protected]>
3434
* @copyright 2012 Microsoft Corporation
3535
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
36-
* @version Release: 0.4.0_2014-01
36+
* @version Release: 0.4.1_2015-02
3737
* @link https://github.com/windowsazure/azure-sdk-for-php
3838
* @see http://msdn.microsoft.com/en-us/library/windowsazure/dd135733.aspx
3939
*/

Diff for: WindowsAzure/Blob/Models/AccessCondition.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* @author Azure PHP SDK <[email protected]>
3737
* @copyright 2012 Microsoft Corporation
3838
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
39-
* @version Release: 0.4.0_2014-01
39+
* @version Release: 0.4.1_2015-02
4040
* @link https://github.com/windowsazure/azure-sdk-for-php
4141
*/
4242
class AccessCondition

Diff for: WindowsAzure/Blob/Models/AccessPolicy.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* @author Azure PHP SDK <[email protected]>
3636
* @copyright 2012 Microsoft Corporation
3737
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
38-
* @version Release: 0.4.0_2014-01
38+
* @version Release: 0.4.1_2015-02
3939
* @link https://github.com/windowsazure/azure-sdk-for-php
4040
*/
4141
class AccessPolicy

Diff for: WindowsAzure/Blob/Models/AcquireLeaseOptions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Azure PHP SDK <[email protected]>
3333
* @copyright 2012 Microsoft Corporation
3434
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
35-
* @version Release: 0.4.0_2014-01
35+
* @version Release: 0.4.1_2015-02
3636
* @link https://github.com/windowsazure/azure-sdk-for-php
3737
*/
3838
class AcquireLeaseOptions extends BlobServiceOptions

Diff for: WindowsAzure/Blob/Models/AcquireLeaseResult.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* @author Azure PHP SDK <[email protected]>
3535
* @copyright 2012 Microsoft Corporation
3636
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
37-
* @version Release: 0.4.0_2014-01
37+
* @version Release: 0.4.1_2015-02
3838
* @link https://github.com/windowsazure/azure-sdk-for-php
3939
*/
4040
class AcquireLeaseResult

Diff for: WindowsAzure/Blob/Models/Blob.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Azure PHP SDK <[email protected]>
3333
* @copyright 2012 Microsoft Corporation
3434
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
35-
* @version Release: 0.4.0_2014-01
35+
* @version Release: 0.4.1_2015-02
3636
* @link https://github.com/windowsazure/azure-sdk-for-php
3737
*/
3838
class Blob

Diff for: WindowsAzure/Blob/Models/BlobBlockType.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Azure PHP SDK <[email protected]>
3333
* @copyright 2012 Microsoft Corporation
3434
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
35-
* @version Release: 0.4.0_2014-01
35+
* @version Release: 0.4.1_2015-02
3636
* @link https://github.com/windowsazure/azure-sdk-for-php
3737
*/
3838
class BlobBlockType

Diff for: WindowsAzure/Blob/Models/BlobPrefix.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Azure PHP SDK <[email protected]>
3333
* @copyright 2012 Microsoft Corporation
3434
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
35-
* @version Release: 0.4.0_2014-01
35+
* @version Release: 0.4.1_2015-02
3636
* @link https://github.com/windowsazure/azure-sdk-for-php
3737
*/
3838
class BlobPrefix

Diff for: WindowsAzure/Blob/Models/BlobProperties.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* @author Azure PHP SDK <[email protected]>
3636
* @copyright 2012 Microsoft Corporation
3737
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
38-
* @version Release: 0.4.0_2014-01
38+
* @version Release: 0.4.1_2015-02
3939
* @link https://github.com/windowsazure/azure-sdk-for-php
4040
*/
4141
class BlobProperties

Diff for: WindowsAzure/Blob/Models/BlobServiceOptions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Azure PHP SDK <[email protected]>
3333
* @copyright 2012 Microsoft Corporation
3434
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
35-
* @version Release: 0.4.0_2014-01
35+
* @version Release: 0.4.1_2015-02
3636
* @link https://github.com/windowsazure/azure-sdk-for-php
3737
*/
3838
class BlobServiceOptions

Diff for: WindowsAzure/Blob/Models/BlobType.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Azure PHP SDK <[email protected]>
3333
* @copyright 2012 Microsoft Corporation
3434
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
35-
* @version Release: 0.4.0_2014-01
35+
* @version Release: 0.4.1_2015-02
3636
* @link https://github.com/windowsazure/azure-sdk-for-php
3737
*/
3838
class BlobType

Diff for: WindowsAzure/Blob/Models/Block.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Azure PHP SDK <[email protected]>
3333
* @copyright 2012 Microsoft Corporation
3434
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
35-
* @version Release: 0.4.0_2014-01
35+
* @version Release: 0.4.1_2015-02
3636
* @link https://github.com/windowsazure/azure-sdk-for-php
3737
*/
3838
class Block

Diff for: WindowsAzure/Blob/Models/BlockList.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* @author Azure PHP SDK <[email protected]>
3737
* @copyright 2012 Microsoft Corporation
3838
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
39-
* @version Release: 0.4.0_2014-01
39+
* @version Release: 0.4.1_2015-02
4040
* @link https://github.com/windowsazure/azure-sdk-for-php
4141
*/
4242
class BlockList

Diff for: WindowsAzure/Blob/Models/BreakLeaseResult.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* @author Azure PHP SDK <[email protected]>
3535
* @copyright 2012 Microsoft Corporation
3636
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
37-
* @version Release: 0.4.0_2014-01
37+
* @version Release: 0.4.1_2015-02
3838
* @link https://github.com/windowsazure/azure-sdk-for-php
3939
*/
4040
class BreakLeaseResult

Diff for: WindowsAzure/Blob/Models/CommitBlobBlocksOptions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @author Azure PHP SDK <[email protected]>
3434
* @copyright 2012 Microsoft Corporation
3535
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
36-
* @version Release: 0.4.0_2014-01
36+
* @version Release: 0.4.1_2015-02
3737
* @link https://github.com/windowsazure/azure-sdk-for-php
3838
*/
3939
class CommitBlobBlocksOptions extends BlobServiceOptions

Diff for: WindowsAzure/Blob/Models/Container.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* @author Azure PHP SDK <[email protected]>
3535
* @copyright 2012 Microsoft Corporation
3636
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
37-
* @version Release: 0.4.0_2014-01
37+
* @version Release: 0.4.1_2015-02
3838
* @link https://github.com/windowsazure/azure-sdk-for-php
3939
*/
4040
class Container

Diff for: WindowsAzure/Blob/Models/ContainerACL.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* @author Azure PHP SDK <[email protected]>
4040
* @copyright 2012 Microsoft Corporation
4141
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
42-
* @version Release: 0.4.0_2014-01
42+
* @version Release: 0.4.1_2015-02
4343
* @link https://github.com/windowsazure/azure-sdk-for-php
4444
*/
4545
class ContainerAcl

Diff for: WindowsAzure/Blob/Models/ContainerProperties.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Azure PHP SDK <[email protected]>
3333
* @copyright 2012 Microsoft Corporation
3434
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
35-
* @version Release: 0.4.0_2014-01
35+
* @version Release: 0.4.1_2015-02
3636
* @link https://github.com/windowsazure/azure-sdk-for-php
3737
*/
3838
class ContainerProperties

Diff for: WindowsAzure/Blob/Models/CopyBlobOptions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @author Azure PHP SDK <[email protected]>
3434
* @copyright 2012 Microsoft Corporation
3535
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
36-
* @version Release: 0.4.0_2014-01
36+
* @version Release: 0.4.1_2015-02
3737
* @link https://github.com/windowsazure/azure-sdk-for-php
3838
*/
3939
class CopyBlobOptions extends BlobServiceOptions

Diff for: WindowsAzure/Blob/Models/CopyBlobResult.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* @author Azure PHP SDK <[email protected]>
3535
* @copyright 2012 Microsoft Corporation
3636
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
37-
* @version Release: 0.4.0_2014-01
37+
* @version Release: 0.4.1_2015-02
3838
* @link https://github.com/windowsazure/azure-sdk-for-php
3939
*/
4040
class CopyBlobResult

Diff for: WindowsAzure/Blob/Models/CreateBlobBlockOptions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Azure PHP SDK <[email protected]>
3333
* @copyright 2012 Microsoft Corporation
3434
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
35-
* @version Release: 0.4.0_2014-01
35+
* @version Release: 0.4.1_2015-02
3636
* @link https://github.com/windowsazure/azure-sdk-for-php
3737
*/
3838
class CreateBlobBlockOptions extends BlobServiceOptions

Diff for: WindowsAzure/Blob/Models/CreateBlobOptions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @author Azure PHP SDK <[email protected]>
3434
* @copyright 2012 Microsoft Corporation
3535
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
36-
* @version Release: 0.4.0_2014-01
36+
* @version Release: 0.4.1_2015-02
3737
* @link https://github.com/windowsazure/azure-sdk-for-php
3838
*/
3939
class CreateBlobOptions extends BlobServiceOptions

Diff for: WindowsAzure/Blob/Models/CreateBlobPagesOptions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Azure PHP SDK <[email protected]>
3333
* @copyright 2012 Microsoft Corporation
3434
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
35-
* @version Release: 0.4.0_2014-01
35+
* @version Release: 0.4.1_2015-02
3636
* @link https://github.com/windowsazure/azure-sdk-for-php
3737
*/
3838
class CreateBlobPagesOptions extends BlobServiceOptions

Diff for: WindowsAzure/Blob/Models/CreateBlobPagesResult.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* @author Azure PHP SDK <[email protected]>
3636
* @copyright 2012 Microsoft Corporation
3737
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
38-
* @version Release: 0.4.0_2014-01
38+
* @version Release: 0.4.1_2015-02
3939
* @link https://github.com/windowsazure/azure-sdk-for-php
4040
*/
4141
class CreateBlobPagesResult

Diff for: WindowsAzure/Blob/Models/CreateBlobSnapshotOptions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Azure PHP SDK <[email protected]>
3333
* @copyright 2012 Microsoft Corporation
3434
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
35-
* @version Release: 0.4.0_2014-01
35+
* @version Release: 0.4.1_2015-02
3636
* @link https://github.com/windowsazure/azure-sdk-for-php
3737
*/
3838
class CreateBlobSnapshotOptions extends BlobServiceOptions

Diff for: WindowsAzure/Blob/Models/CreateBlobSnapshotResult.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* @author Azure PHP SDK <[email protected]>
3636
* @copyright 2012 Microsoft Corporation
3737
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
38-
* @version Release: 0.4.0_2014-01
38+
* @version Release: 0.4.1_2015-02
3939
* @link https://github.com/windowsazure/azure-sdk-for-php
4040
*/
4141
class CreateBlobSnapshotResult

Diff for: WindowsAzure/Blob/Models/CreateContainerOptions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* @author Azure PHP SDK <[email protected]>
3535
* @copyright 2012 Microsoft Corporation
3636
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
37-
* @version Release: 0.4.0_2014-01
37+
* @version Release: 0.4.1_2015-02
3838
* @link https://github.com/windowsazure/azure-sdk-for-php
3939
*/
4040
class CreateContainerOptions extends BlobServiceOptions

Diff for: WindowsAzure/Blob/Models/DeleteBlobOptions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @author Azure PHP SDK <[email protected]>
3434
* @copyright 2012 Microsoft Corporation
3535
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
36-
* @version Release: 0.4.0_2014-01
36+
* @version Release: 0.4.1_2015-02
3737
* @link https://github.com/windowsazure/azure-sdk-for-php
3838
*/
3939
class DeleteBlobOptions extends BlobServiceOptions

Diff for: WindowsAzure/Blob/Models/DeleteContainerOptions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Azure PHP SDK <[email protected]>
3333
* @copyright 2012 Microsoft Corporation
3434
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
35-
* @version Release: 0.4.0_2014-01
35+
* @version Release: 0.4.1_2015-02
3636
* @link https://github.com/windowsazure/azure-sdk-for-php
3737
*/
3838
class DeleteContainerOptions extends BlobServiceOptions

Diff for: WindowsAzure/Blob/Models/GetBlobMetadataOptions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Azure PHP SDK <[email protected]>
3333
* @copyright 2012 Microsoft Corporation
3434
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
35-
* @version Release: 0.4.0_2014-01
35+
* @version Release: 0.4.1_2015-02
3636
* @link https://github.com/windowsazure/azure-sdk-for-php
3737
*/
3838
class GetBlobMetadataOptions extends BlobServiceOptions

Diff for: WindowsAzure/Blob/Models/GetBlobMetadataResult.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* @author Azure PHP SDK <[email protected]>
3636
* @copyright 2012 Microsoft Corporation
3737
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
38-
* @version Release: 0.4.0_2014-01
38+
* @version Release: 0.4.1_2015-02
3939
* @link https://github.com/windowsazure/azure-sdk-for-php
4040
*/
4141
class GetBlobMetadataResult

Diff for: WindowsAzure/Blob/Models/GetBlobOptions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @author Azure PHP SDK <[email protected]>
3434
* @copyright 2012 Microsoft Corporation
3535
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
36-
* @version Release: 0.4.0_2014-01
36+
* @version Release: 0.4.1_2015-02
3737
* @link https://github.com/windowsazure/azure-sdk-for-php
3838
*/
3939
class GetBlobOptions extends BlobServiceOptions

Diff for: WindowsAzure/Blob/Models/GetBlobPropertiesOptions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Azure PHP SDK <[email protected]>
3333
* @copyright 2012 Microsoft Corporation
3434
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
35-
* @version Release: 0.4.0_2014-01
35+
* @version Release: 0.4.1_2015-02
3636
* @link https://github.com/windowsazure/azure-sdk-for-php
3737
*/
3838
class GetBlobPropertiesOptions extends BlobServiceOptions

Diff for: WindowsAzure/Blob/Models/GetBlobPropertiesResult.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Azure PHP SDK <[email protected]>
3333
* @copyright 2012 Microsoft Corporation
3434
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
35-
* @version Release: 0.4.0_2014-01
35+
* @version Release: 0.4.1_2015-02
3636
* @link https://github.com/windowsazure/azure-sdk-for-php
3737
*/
3838
class GetBlobPropertiesResult

Diff for: WindowsAzure/Blob/Models/GetBlobResult.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* @author Azure PHP SDK <[email protected]>
3535
* @copyright 2012 Microsoft Corporation
3636
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
37-
* @version Release: 0.4.0_2014-01
37+
* @version Release: 0.4.1_2015-02
3838
* @link https://github.com/windowsazure/azure-sdk-for-php
3939
*/
4040
class GetBlobResult

Diff for: WindowsAzure/Blob/Models/GetContainerACLResult.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* @author Azure PHP SDK <[email protected]>
3434
* @copyright 2012 Microsoft Corporation
3535
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
36-
* @version Release: 0.4.0_2014-01
36+
* @version Release: 0.4.1_2015-02
3737
* @link https://github.com/windowsazure/azure-sdk-for-php
3838
*/
3939
class GetContainerAclResult

Diff for: WindowsAzure/Blob/Models/GetContainerPropertiesResult.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Azure PHP SDK <[email protected]>
3333
* @copyright 2012 Microsoft Corporation
3434
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
35-
* @version Release: 0.4.0_2014-01
35+
* @version Release: 0.4.1_2015-02
3636
* @link https://github.com/windowsazure/azure-sdk-for-php
3737
*/
3838
class GetContainerPropertiesResult

0 commit comments

Comments
 (0)