import v2.0.0.0_RC3 | 2012-07-01
https://github.com/lucanos/CommunityID -> http://www.itadmins.net/archives/357
This commit is contained in:
@ -17,7 +17,7 @@
|
||||
* @subpackage Client
|
||||
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id: Client.php 16541 2009-07-07 06:59:03Z bkarwin $
|
||||
* @version $Id: Client.php 18173 2009-09-17 15:35:05Z padraic $
|
||||
*/
|
||||
|
||||
|
||||
@ -126,6 +126,7 @@ class Zend_Rest_Client extends Zend_Service_Abstract
|
||||
*
|
||||
* @param string $path
|
||||
* @param array $query Array of GET parameters
|
||||
* @throws Zend_Http_Client_Exception
|
||||
* @return Zend_Http_Response
|
||||
*/
|
||||
final public function restGet($path, array $query = null)
|
||||
@ -163,6 +164,7 @@ class Zend_Rest_Client extends Zend_Service_Abstract
|
||||
*
|
||||
* @param string $path
|
||||
* @param mixed $data Raw data to send
|
||||
* @throws Zend_Http_Client_Exception
|
||||
* @return Zend_Http_Response
|
||||
*/
|
||||
final public function restPost($path, $data = null)
|
||||
@ -176,6 +178,7 @@ class Zend_Rest_Client extends Zend_Service_Abstract
|
||||
*
|
||||
* @param string $path
|
||||
* @param mixed $data Raw data to send in request
|
||||
* @throws Zend_Http_Client_Exception
|
||||
* @return Zend_Http_Response
|
||||
*/
|
||||
final public function restPut($path, $data = null)
|
||||
@ -188,6 +191,7 @@ class Zend_Rest_Client extends Zend_Service_Abstract
|
||||
* Performs an HTTP DELETE request to $path.
|
||||
*
|
||||
* @param string $path
|
||||
* @throws Zend_Http_Client_Exception
|
||||
* @return Zend_Http_Response
|
||||
*/
|
||||
final public function restDelete($path)
|
||||
|
Reference in New Issue
Block a user