Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Merge pull request zendframework/zendframework#2153 from PHPGangsta/f…
Browse files Browse the repository at this point in the history
…ixes/phpdocClassesAndNamespaces

added @return where missing
  • Loading branch information
Maks3w committed Aug 11, 2012
2 parents 79bf523 + d2eaf12 commit e3d1211
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -998,6 +998,7 @@ protected function _initSoapClientObject()
* My be overridden in descendant classes
*
* @param array $arguments
* @return array
*/
protected function _preProcessArguments($arguments)
{
Expand All @@ -1010,7 +1011,8 @@ protected function _preProcessArguments($arguments)
*
* My be overridden in descendant classes
*
* @param array $arguments
* @param array $result
* @return array
*/
protected function _preProcessResult($result)
{
Expand All @@ -1021,7 +1023,7 @@ protected function _preProcessResult($result)
/**
* Add SOAP input header
*
* @param SoapHeader $header
* @param \SoapHeader $header
* @param boolean $permanent
* @return \Zend\Soap\Client
*/
Expand Down
1 change: 1 addition & 0 deletions src/Client/DotNet.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ protected function _preProcessArguments($arguments)
* My be overridden in descendant classes
*
* @param object $result
* @return mixed
*/
protected function _preProcessResult($result)
{
Expand Down
4 changes: 3 additions & 1 deletion src/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ public function getSoapFeatures()
/**
* Set the SOAP WSDL Caching Options
*
* @param string|int|boolean $caching
* @param string|int|boolean $options
* @return Server
*/
public function setWSDLCache($options)
Expand Down Expand Up @@ -518,6 +518,8 @@ public function addFunction($function, $namespace = '')
* See {@link setObject()} to set preconfigured object instances as request handlers.
*
* @param string|object $class Class name or object instance which executes SOAP Requests at endpoint.
* @param string $namespace
* @param $argv
* @return Server
* @throws Exception\InvalidArgumentException if called more than once, or if class
* does not exist
Expand Down
1 change: 1 addition & 0 deletions src/Wsdl/ComplexTypeStrategy/Composite.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ public function getStrategyOfType($type)
* Method accepts the current WSDL context file.
*
* @param \Zend\Soap\Wsdl $context
* @return Composite
*/
public function setContext(Wsdl $context)
{
Expand Down

0 comments on commit e3d1211

Please sign in to comment.