Skip to content

Commit

Permalink
Merge pull request #1 from Maks3w/hotfix/ZF-27-Cloud
Browse files Browse the repository at this point in the history
Hotfix/zf 27 cloud
  • Loading branch information
Gabriel Baker committed May 7, 2012
2 parents 4b1c842 + 06254b3 commit a92a23d
Show file tree
Hide file tree
Showing 82 changed files with 485 additions and 483 deletions.
8 changes: 4 additions & 4 deletions library/Zend/Cloud/AbstractFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* to [email protected] so we can send you a copy immediately.
*
* @category Zend
* @package Zend\Cloud
* @package Zend_Cloud
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
Expand All @@ -24,7 +24,7 @@
* Abstract factory for Zend\Cloud resources
*
* @category Zend
* @package Zend\Cloud
* @package Zend_Cloud
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
Expand All @@ -44,8 +44,8 @@ private function __construct()
* Get an individual adapter instance
*
* @param string $adapterOption
* @param array|Zend\Config $options
* @return null|DocumentService\Adapter|QueueService\Adapter|StorageService\Adapter|Infrastructure\Adapter
* @param array|\Zend\Config\Config $options
* @return null|DocumentService\Adapter\AdapterInterface|QueueService\Adapter\AdapterInterface|StorageService\Adapter\AdapterInterface|Infrastructure\Adapter\AdapterInterface
*/
protected static function _getAdapter($adapterOption, $options)
{
Expand Down
10 changes: 5 additions & 5 deletions library/Zend/Cloud/DocumentService/Adapter/AbstractAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* to [email protected] so we can send you a copy immediately.
*
* @category Zend
* @package Zend\Cloud\DocumentService
* @package Zend_Cloud_DocumentService
* @subpackage Adapter
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
Expand All @@ -35,7 +35,7 @@
* - query class objects
*
* @category Zend
* @package Zend\Cloud\DocumentService
* @package Zend_Cloud_DocumentService
* @subpackage Adapter
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
Expand Down Expand Up @@ -69,7 +69,7 @@ abstract class AbstractAdapter implements AdapterInterface
* Set the class for document objects
*
* @param string $class
* @return Zend\Cloud\DocumentService\Adapter\AbstractAdapter
* @return \Zend\Cloud\DocumentService\Adapter\AbstractAdapter
*/
public function setDocumentClass($class)
{
Expand All @@ -91,7 +91,7 @@ public function getDocumentClass()
* Set the class for document set objects
*
* @param string $class
* @return Zend\Cloud\DocumentService\Adapter\AbstractAdapter
* @return \Zend\Cloud\DocumentService\Adapter\AbstractAdapter
*/
public function setDocumentSetClass($class)
{
Expand All @@ -113,7 +113,7 @@ public function getDocumentSetClass()
* Set the query class for query objects
*
* @param string $class
* @return Zend\Cloud\DocumentService\Adapter\AbstractAdapter
* @return \Zend\Cloud\DocumentService\Adapter\AbstractAdapter
*/
public function setQueryClass($class)
{
Expand Down
18 changes: 9 additions & 9 deletions library/Zend/Cloud/DocumentService/Adapter/AdapterInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* to [email protected] so we can send you a copy immediately.
*
* @category Zend
* @package Zend\Cloud
* @package Zend_Cloud
* @subpackage DocumentService
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
Expand All @@ -34,7 +34,7 @@
* access control support in future versions of the interface.
*
* @category Zend
* @package Zend\Cloud
* @package Zend_Cloud
* @subpackage DocumentService
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
Expand Down Expand Up @@ -75,15 +75,15 @@ public function listCollections($options = null);
*
* @param string $collectionName
* @param null|array $options
* @return Zend\Cloud\DocumentService\DocumentSet
* @return \Zend\Cloud\DocumentService\DocumentSet
*/
public function listDocuments($collectionName, array $options = null);

/**
* Insert document
*
* @param string $collectionName Collection name
* @param Zend\Cloud\DocumentService\Document $document Document to insert
* @param \Zend\Cloud\DocumentService\Document $document Document to insert
* @param array $options
* @return boolean
*/
Expand All @@ -94,7 +94,7 @@ public function insertDocument($collectionName, $document, $options = null);
* The new document replaces the existing document with the same ID.
*
* @param string $collectionName Collection name
* @param Zend\Cloud\DocumentService\Document $document
* @param \Zend\Cloud\DocumentService\Document $document
* @param array $options
*/
public function replaceDocument($collectionName, $document, $options = null);
Expand All @@ -105,8 +105,8 @@ public function replaceDocument($collectionName, $document, $options = null);
* Fields not specified in the set will be left as-is.
*
* @param string $collectionName
* @param mixed|Zend\Cloud\DocumentService\Document $documentID Document ID, adapter-dependent, or document containing updates
* @param array|Zend\Cloud\DocumentService\Document $fieldset Set of fields to update
* @param mixed|\Zend\Cloud\DocumentService\Document $documentID Document ID, adapter-dependent, or document containing updates
* @param array|\Zend\Cloud\DocumentService\Document $fieldset Set of fields to update
* @param array $options
* @return boolean
*/
Expand All @@ -130,7 +130,7 @@ public function deleteDocument($collectionName, $documentID, $options = null);
* @param string $collectionName Collection name
* @param mixed $documentID Document ID, adapter-dependent
* @param array $options
* @return Zend\Cloud\DocumentService\Document
* @return \Zend\Cloud\DocumentService\Document
*/
public function fetchDocument($collectionName, $documentID, $options = null);

Expand All @@ -149,7 +149,7 @@ public function query($collectionName, $query, $options = null);
* Create query statement
*
* @param string $fields
* @return Zend\Cloud\DocumentService\Query
* @return \Zend\Cloud\DocumentService\Query
*/
public function select($fields = null);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Exception
*
* @category Zend
* @package Zend\Cloud\DocumentService
* @package Zend_Cloud_DocumentService
* @subpackage Adapter
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* to [email protected] so we can send you a copy immediately.
*
* @category Zend
* @package Zend\Cloud\DocumentService\Adapter
* @package Zend_Cloud_DocumentService_Adapter
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* to [email protected] so we can send you a copy immediately.
*
* @category Zend
* @package Zend\Cloud\DocumentService\Adapter
* @package Zend_Cloud_DocumentService_Adapter
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
Expand All @@ -25,7 +25,7 @@

/**
* @category Zend
* @package Zend\Cloud\DocumentService\Adapter
* @package Zend_Cloud_DocumentService_Adapter
* @subpackage Exception
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* to [email protected] so we can send you a copy immediately.
*
* @category Zend
* @package Zend\Cloud\DocumentService
* @package Zend_Cloud_DocumentService
* @subpackage Adapter
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
Expand All @@ -23,7 +23,7 @@


/**
* @package Zend\Cloud\DocumentService\Adapter
* @package Zend_Cloud_DocumentService_Adapter
* @subpackage Exception
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
Expand Down
Loading

0 comments on commit a92a23d

Please sign in to comment.