diff -r 5e7a0fedabdf -r 877f952ae2bd web/lib/Zend/Service/Amazon/SimpleDb/Page.php --- a/web/lib/Zend/Service/Amazon/SimpleDb/Page.php Thu Mar 21 17:31:31 2013 +0100 +++ b/web/lib/Zend/Service/Amazon/SimpleDb/Page.php Thu Mar 21 19:50:53 2013 +0100 @@ -1,97 +1,97 @@ -_data = $data; - $this->_token = $token; - } - - /** - * Retrieve page data - * - * @return string - */ - public function getData() - { - return $this->_data; - } - - /** - * Retrieve token - * - * @return string|null - */ - public function getToken() - { - return $this->_token; - } - - /** - * Determine whether this is the last page of data - * - * @return void - */ - public function isLast() - { - return (null === $this->_token); - } - - /** - * Cast to string - * - * @return string - */ - public function __toString() - { - return "Page with token: " . $this->_token - . "\n and data: " . $this->_data; - } -} +_data = $data; + $this->_token = $token; + } + + /** + * Retrieve page data + * + * @return string + */ + public function getData() + { + return $this->_data; + } + + /** + * Retrieve token + * + * @return string|null + */ + public function getToken() + { + return $this->_token; + } + + /** + * Determine whether this is the last page of data + * + * @return void + */ + public function isLast() + { + return (null === $this->_token); + } + + /** + * Cast to string + * + * @return string + */ + public function __toString() + { + return "Page with token: " . $this->_token + . "\n and data: " . $this->_data; + } +}