Skip to content
This repository was archived by the owner on May 8, 2024. It is now read-only.

Commit 3357c7d

Browse files
spazevinjiang
authored andcommitted
Correct docblock types (#176)
Correct docblock types: * CreatePageBlob returns PutBlobResult * Import GetServiceStatsResult not GetServiceStats * Use aliased namespace TableModels
1 parent 91d29eb commit 3357c7d

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

azure-storage-blob/src/Blob/Internal/IBlob.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ public function listBlobsAsync(
407407
* a 512-byte boundary.
408408
* @param BlobModels\CreatePageBlobOptions $options optional parameters
409409
*
410-
* @return BlobModels\CopyBlobResult
410+
* @return BlobModels\PutBlobResult
411411
*
412412
* @see http://msdn.microsoft.com/en-us/library/windowsazure/dd179451.aspx
413413
*/
@@ -492,7 +492,7 @@ public function createAppendBlobAsync(
492492
* @param string|resource|StreamInterface $content content of the blob
493493
* @param BlobModels\CreateBlockBlobOptions $options optional parameters
494494
*
495-
* @return BlobModels\CopyBlobResult
495+
* @return BlobModels\PutBlobResult
496496
*
497497
* @see http://msdn.microsoft.com/en-us/library/windowsazure/dd179451.aspx
498498
*/

azure-storage-queue/src/Queue/Internal/IQueue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
use MicrosoftAzure\Storage\Queue\Models as QueueModels;
2828
use MicrosoftAzure\Storage\Common\Models\ServiceProperties;
2929
use MicrosoftAzure\Storage\Common\Models\ServiceOptions;
30-
use MicrosoftAzure\Storage\Common\Models\GetServiceStats;
30+
use MicrosoftAzure\Storage\Common\Models\GetServiceStatsResult;
3131

3232
/**
3333
* This interface has all REST APIs provided by Windows Azure for queue service

azure-storage-table/src/Table/Internal/ITable.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
use MicrosoftAzure\Storage\Table\Models as TableModels;
2828
use MicrosoftAzure\Storage\Common\Models\ServiceProperties;
2929
use MicrosoftAzure\Storage\Common\Models\ServiceOptions;
30-
use MicrosoftAzure\Storage\Common\Models\GetServiceStats;
30+
use MicrosoftAzure\Storage\Common\Models\GetServiceStatsResult;
3131

3232
/**
3333
* This interface has all REST APIs provided by Windows Azure for Table service.
@@ -141,7 +141,7 @@ public function queryTables($options = null);
141141
/**
142142
* Creates promise to query the tables in the given storage account.
143143
*
144-
* @param TableModels\QueryTablesOptions|string|Models\Filters\Filter $options
144+
* @param TableModels\QueryTablesOptions|string|TableModels\Filters\Filter $options
145145
* Could be optional parameters, table prefix or filter to apply.
146146
*
147147
* @return \GuzzleHttp\Promise\PromiseInterface
@@ -255,7 +255,7 @@ public function queryEntities($table, $options = null);
255255
*
256256
* @param string $table The name of
257257
* the table.
258-
* @param Models\QueryEntitiesOptions|string|Models\Filters\Filter $options Coule be
258+
* @param TableModels\QueryEntitiesOptions|string|TableModels\Filters\Filter $options Coule be
259259
* optional parameters, query string or filter to apply.
260260
*
261261
* @return \GuzzleHttp\Promise\PromiseInterface

0 commit comments

Comments
 (0)