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

Commit

Permalink
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/AutoDiscover.php
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ public function addFunction($function)
/**
* Generate the WSDL for a service class.
*
* @return Zend\Soap\Wsdl
* @return Wsdl
*/
protected function _generateClass()
{
Expand All @@ -354,7 +354,7 @@ protected function _generateClass()
/**
* Generate the WSDL for a set of functions.
*
* @return Zend\Soap\Wsdl
* @return Wsdl
*/
protected function _generateFunctions()
{
Expand All @@ -370,7 +370,7 @@ protected function _generateFunctions()
* Generate the WSDL for a set of reflection method instances.
*
* @param array $reflectionMethods
* @return Zend\Soap\Wsdl
* @return Wsdl
*/
protected function _generateWsdl(array $reflectionMethods)
{
Expand Down
8 changes: 4 additions & 4 deletions src/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ public function getResponse()
* SoapServer object, and then registers any functions or class with it, as
* well as persistence.
*
* @return SoapServer
* @return \SoapServer
*/
protected function _getSoap()
{
Expand Down Expand Up @@ -894,9 +894,9 @@ public function getFaultExceptions()
* {@Link registerFaultException()}.
*
* @link http://www.w3.org/TR/soap12-part1/#faultcodes
* @param string|Exception $fault
* @param string|\Exception $fault
* @param string $code SOAP Fault Codes
* @return SoapFault
* @return \SoapFault
*/
public function fault($fault = null, $code = "Receiver")
{
Expand Down Expand Up @@ -935,7 +935,7 @@ public function fault($fault = null, $code = "Receiver")
* @param int $errline
* @param array $errcontext
* @return void
* @throws SoapFault
* @throws \SoapFault
*/
public function handlePhpErrors($errno, $errstr, $errfile = null, $errline = null, array $errcontext = null)
{
Expand Down

0 comments on commit c918e2c

Please sign in to comment.