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

Commit 716fe03

Browse files
committed
Fixes DocBlocks in Zend_Service_Amazon_SimpleDb_Page
1 parent 68a6610 commit 716fe03

File tree

1 file changed

+13
-6
lines changed
  • library/Zend/Service/Amazon/SimpleDb

1 file changed

+13
-6
lines changed

library/Zend/Service/Amazon/SimpleDb/Page.php

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,25 @@
3535
*/
3636
class Zend_Service_Amazon_SimpleDb_Page
3737
{
38-
/** @var string Page data */
38+
/**
39+
* Page data
40+
*
41+
* @var string
42+
*/
3943
protected $_data;
4044

41-
/** @var string|null Token identifying page */
45+
/**
46+
* Token identifying page
47+
*
48+
* @var string|null
49+
*/
4250
protected $_token;
4351

4452
/**
4553
* Constructor
4654
*
47-
* @param string $data
48-
* @param string|null $token
49-
* @return void
55+
* @param string $data
56+
* @param string|null $token
5057
*/
5158
public function __construct($data, $token = null)
5259
{
@@ -97,7 +104,7 @@ public function getToken()
97104
/**
98105
* Determine whether this is the last page of data
99106
*
100-
* @return void
107+
* @return bool
101108
*/
102109
public function isLast()
103110
{

0 commit comments

Comments
 (0)