Skip to content
This repository has been archived by the owner on Jun 19, 2019. It is now read-only.

Commit

Permalink
Merge pull request #5 from Gemorroj/master
Browse files Browse the repository at this point in the history
[UPDATE] phpdoc fixes
  • Loading branch information
Mikaël DELSOL committed Jan 3, 2013
2 parents 0b746b4 + bf30ba9 commit f4c0839
Show file tree
Hide file tree
Showing 8 changed files with 184 additions and 182 deletions.
14 changes: 7 additions & 7 deletions WsdlClassFileTpl.php
Expand Up @@ -124,7 +124,7 @@ class PackageNameWsdlClass extends stdClass implements ArrayAccess,Iterator,Coun
* @uses PackageNameWsdlClass::initInternArrayToIterate() * @uses PackageNameWsdlClass::initInternArrayToIterate()
* @uses PackageNameWsdlClass::_set() * @uses PackageNameWsdlClass::_set()
* @param array $_arrayOfValues values * @param array $_arrayOfValues values
* @return Lists * @return void
*/ */
public function __construct($_arrayOfValues = array()) public function __construct($_arrayOfValues = array())
{ {
Expand Down Expand Up @@ -300,7 +300,7 @@ public function key()
* Method alias to offsetGet * Method alias to offsetGet
* @see PackageNameWsdlClass::offsetGet() * @see PackageNameWsdlClass::offsetGet()
* @uses PackageNameWsdlClass::offsetGet() * @uses PackageNameWsdlClass::offsetGet()
* @param int * @param int $_index
* @return mixed * @return mixed
*/ */
public function item($_index) public function item($_index)
Expand Down Expand Up @@ -378,7 +378,7 @@ public function last()
* Method testing index in item * Method testing index in item
* @uses PackageNameWsdlClass::getInternArrayToIterateIsArray() * @uses PackageNameWsdlClass::getInternArrayToIterateIsArray()
* @uses PackageNameWsdlClass::getInternArrayToIterate() * @uses PackageNameWsdlClass::getInternArrayToIterate()
* @param int * @param int $_offset
* @return bool true|false * @return bool true|false
*/ */
public function offsetExists($_offset) public function offsetExists($_offset)
Expand All @@ -388,7 +388,7 @@ public function offsetExists($_offset)
/** /**
* Method returning the item at "index" value * Method returning the item at "index" value
* @uses PackageNameWsdlClass::offsetExists() * @uses PackageNameWsdlClass::offsetExists()
* @param int * @param int $_offset
* @return mixed * @return mixed
*/ */
public function offsetGet($_offset) public function offsetGet($_offset)
Expand Down Expand Up @@ -460,7 +460,7 @@ protected function saveLastError($_methoName,SoapFault $_soapFault)
} }
/** /**
* Method getting the last error for a certain method * Method getting the last error for a certain method
* @param string method name to get error from * @param string $_methoName method name to get error from
* @return SoapFault|null * @return SoapFault|null
*/ */
public function getLastErrorForMethod($_methoName) public function getLastErrorForMethod($_methoName)
Expand Down Expand Up @@ -500,8 +500,8 @@ public function getInternArrayToIterateOffset()
* @uses PackageNameWsdlClass::getAttributeName() * @uses PackageNameWsdlClass::getAttributeName()
* @uses PackageNameWsdlClass::initInternArrayToIterate() * @uses PackageNameWsdlClass::initInternArrayToIterate()
* @uses PackageNameWsdlClass::__toString() * @uses PackageNameWsdlClass::__toString()
* @param array the array to iterate trough * @param array $_array the array to iterate trough
* @param bool indicates that methods is calling itself * @param bool $_internCall indicates that methods is calling itself
* @return void * @return void
*/ */
public function initInternArrayToIterate($_array = array(),$_internCall = false) public function initInternArrayToIterate($_array = array(),$_internCall = false)
Expand Down
8 changes: 4 additions & 4 deletions WsdlToPhpFunction.php
Expand Up @@ -26,9 +26,9 @@ class WsdlToPhpFunction extends WsdlToPhpModel
* @see WsdlToPhpModel::__construct() * @see WsdlToPhpModel::__construct()
* @uses WsdlToPhpFunction::setParameterType() * @uses WsdlToPhpFunction::setParameterType()
* @uses WsdlToPhpFunction::setReturnType() * @uses WsdlToPhpFunction::setReturnType()
* @param string the function name * @param string $_name the function name
* @param string the type/name of the parameter * @param string $_parameterType the type/name of the parameter
* @param string the type/name of the return value * @param string $_returnType the type/name of the return value
* @return WsdlToPhpFunction * @return WsdlToPhpFunction
*/ */
public function __construct($_name,$_parameterType,$_returnType) public function __construct($_name,$_parameterType,$_returnType)
Expand All @@ -52,7 +52,7 @@ public function __construct($_name,$_parameterType,$_returnType)
* @uses WsdlToPhpModel::getDocumentation() * @uses WsdlToPhpModel::getDocumentation()
* @uses WsdlToPhpModel::getGenericWsdlClassName() * @uses WsdlToPhpModel::getGenericWsdlClassName()
* @uses WsdlToPhpModel::cleanString() * @uses WsdlToPhpModel::cleanString()
* @param int comment part * @param int $_part comment part
* @return array * @return array
*/ */
public function getComment($_part = '') public function getComment($_part = '')
Expand Down

0 comments on commit f4c0839

Please sign in to comment.