Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit fab336e

Browse files
committed
Fixes DocBlocks in Zend_Service_Amazon_SimpleDb
1 parent 716fe03 commit fab336e

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

library/Zend/Service/Amazon/SimpleDb.php

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,8 @@ class Zend_Service_Amazon_SimpleDb extends Zend_Service_Amazon_Abstract
8989
/**
9090
* Create Amazon SimpleDB client.
9191
*
92-
* @param string $access_key Override the default Access Key
93-
* @param string $secret_key Override the default Secret Key
94-
* @param string $region Sets the AWS Region
95-
* @return void
92+
* @param string $accessKey Override the default Access Key
93+
* @param string $secretKey Override the default Secret Key
9694
*/
9795
public function __construct($accessKey, $secretKey)
9896
{
@@ -104,6 +102,8 @@ public function __construct($accessKey, $secretKey)
104102
* Set SimpleDB endpoint to use
105103
*
106104
* @param string|Zend_Uri_Http $endpoint
105+
* @throws Zend_Service_Amazon_SimpleDb_Exception
106+
* @throws Zend_Uri_Exception
107107
* @return Zend_Service_Amazon_SimpleDb
108108
*/
109109
public function setEndpoint($endpoint)
@@ -132,8 +132,11 @@ public function getEndpoint()
132132
/**
133133
* Get attributes API method
134134
*
135-
* @param string $domainName Domain name within database
136-
* @param string
135+
* @param string $domainName Domain name within database
136+
* @param string $itemName
137+
* @param string|null $attributeName
138+
* @throws Zend_Service_Amazon_SimpleDb_Exception
139+
* @return array
137140
*/
138141
public function getAttributes(
139142
$domainName, $itemName, $attributeName = null
@@ -180,7 +183,7 @@ public function getAttributes(
180183
*
181184
* @param string $domainName
182185
* @param string $itemName
183-
* @param array|Traverable $attributes
186+
* @param array|Traversable $attributes
184187
* @param array $replace
185188
* @return void
186189
*/
@@ -424,7 +427,9 @@ public function quote($value)
424427
* Quote SDB column or table name
425428
*
426429
* Wraps it in ``
427-
* @param string $name
430+
*
431+
* @param string $name
432+
* @throws Zend_Service_Amazon_SimpleDb_Exception
428433
* @return string
429434
*/
430435
public function quoteName($name)
@@ -524,9 +529,7 @@ protected function _addRequiredParameters(array $parameters)
524529
* values before constructing this string. Do not use any separator
525530
* characters when appending strings.
526531
*
527-
* @param array $parameters the parameters for which to get the signature.
528-
* @param string $secretKey the secret key to use to sign the parameters.
529-
*
532+
* @param array $parameters the parameters for which to get the signature.
530533
* @return string the signed data.
531534
*/
532535
protected function _signParameters(array $paramaters)
@@ -559,9 +562,6 @@ protected function _signParameters(array $paramaters)
559562
*
560563
* @param Zend_Service_Amazon_SimpleDb_Response $response the response object to
561564
* check.
562-
*
563-
* @return void
564-
*
565565
* @throws Zend_Service_Amazon_SimpleDb_Exception if one or more errors are
566566
* returned from Amazon.
567567
*/

0 commit comments

Comments
 (0)