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:
2019-07-17 22:31:04 +02:00
parent 38c146901c
commit 2f397f01f7
2677 changed files with 296182 additions and 45159 deletions

View File

@ -17,7 +17,7 @@
* @subpackage Server
* @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: Smd.php 16541 2009-07-07 06:59:03Z bkarwin $
* @version $Id: Smd.php 18951 2009-11-12 16:26:19Z alexander $
*/
/**
@ -104,8 +104,8 @@ class Zend_Json_Server_Smd
/**
* Set object state via options
*
* @param array $options
*
* @param array $options
* @return Zend_Json_Server_Smd
*/
public function setOptions(array $options)
@ -122,8 +122,8 @@ class Zend_Json_Server_Smd
/**
* Set transport
*
* @param string $transport
*
* @param string $transport
* @return Zend_Json_Server_Smd
*/
public function setTransport($transport)
@ -138,7 +138,7 @@ class Zend_Json_Server_Smd
/**
* Get transport
*
*
* @return string
*/
public function getTransport()
@ -148,8 +148,8 @@ class Zend_Json_Server_Smd
/**
* Set envelope
*
* @param string $envelopeType
*
* @param string $envelopeType
* @return Zend_Json_Server_Smd
*/
public function setEnvelope($envelopeType)
@ -164,7 +164,7 @@ class Zend_Json_Server_Smd
/**
* Retrieve envelope
*
*
* @return string
*/
public function getEnvelope()
@ -175,8 +175,8 @@ class Zend_Json_Server_Smd
// Content-Type of response; default to application/json
/**
* Set content type
*
* @param string $type
*
* @param string $type
* @return Zend_Json_Server_Smd
*/
public function setContentType($type)
@ -191,7 +191,7 @@ class Zend_Json_Server_Smd
/**
* Retrieve content type
*
*
* @return string
*/
public function getContentType()
@ -201,8 +201,8 @@ class Zend_Json_Server_Smd
/**
* Set service target
*
* @param string $target
*
* @param string $target
* @return Zend_Json_Server_Smd
*/
public function setTarget($target)
@ -213,7 +213,7 @@ class Zend_Json_Server_Smd
/**
* Retrieve service target
*
*
* @return string
*/
public function getTarget()
@ -223,8 +223,8 @@ class Zend_Json_Server_Smd
/**
* Set service ID
*
* @param string $Id
*
* @param string $Id
* @return Zend_Json_Server_Smd
*/
public function setId($id)
@ -234,8 +234,8 @@ class Zend_Json_Server_Smd
}
/**
* Get service id
*
* Get service id
*
* @return string
*/
public function getId()
@ -245,8 +245,8 @@ class Zend_Json_Server_Smd
/**
* Set service description
*
* @param string $description
*
* @param string $description
* @return Zend_Json_Server_Smd
*/
public function setDescription($description)
@ -256,8 +256,8 @@ class Zend_Json_Server_Smd
}
/**
* Get service description
*
* Get service description
*
* @return string
*/
public function getDescription()
@ -267,8 +267,8 @@ class Zend_Json_Server_Smd
/**
* Indicate whether or not to generate Dojo-compatible SMD
*
* @param bool $flag
*
* @param bool $flag
* @return Zend_Json_Server_Smd
*/
public function setDojoCompatible($flag)
@ -279,7 +279,7 @@ class Zend_Json_Server_Smd
/**
* Is this a Dojo compatible SMD?
*
*
* @return bool
*/
public function isDojoCompatible()
@ -288,9 +288,9 @@ class Zend_Json_Server_Smd
}
/**
* Add Service
*
* @param Zend_Json_Server_Smd_Service|array $service
* Add Service
*
* @param Zend_Json_Server_Smd_Service|array $service
* @return void
*/
public function addService($service)
@ -317,8 +317,8 @@ class Zend_Json_Server_Smd
/**
* Add many services
*
* @param array $services
*
* @param array $services
* @return Zend_Json_Server_Smd
*/
public function addServices(array $services)
@ -331,8 +331,8 @@ class Zend_Json_Server_Smd
/**
* Overwrite existing services with new ones
*
* @param array $services
*
* @param array $services
* @return Zend_Json_Server_Smd
*/
public function setServices(array $services)
@ -343,8 +343,8 @@ class Zend_Json_Server_Smd
/**
* Get service object
*
* @param string $name
*
* @param string $name
* @return false|Zend_Json_Server_Smd_Service
*/
public function getService($name)
@ -357,7 +357,7 @@ class Zend_Json_Server_Smd
/**
* Return services
*
*
* @return array
*/
public function getServices()
@ -367,8 +367,8 @@ class Zend_Json_Server_Smd
/**
* Remove service
*
* @param string $name
*
* @param string $name
* @return boolean
*/
public function removeService($name)
@ -382,7 +382,7 @@ class Zend_Json_Server_Smd
/**
* Cast to array
*
*
* @return array
*/
public function toArray()
@ -419,7 +419,7 @@ class Zend_Json_Server_Smd
/**
* Export to DOJO-compatible SMD array
*
*
* @return array
*/
public function toDojoArray()
@ -458,7 +458,7 @@ class Zend_Json_Server_Smd
/**
* Cast to JSON
*
*
* @return string
*/
public function toJson()
@ -469,7 +469,7 @@ class Zend_Json_Server_Smd
/**
* Cast to string (JSON)
*
*
* @return string
*/
public function __toString()