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

Commit

Permalink
phpdoc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Gemorroj committed Jan 3, 2013
1 parent 0b746b4 commit bf30ba9
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::_set()
* @param array $_arrayOfValues values
* @return Lists
* @return void
*/
public function __construct($_arrayOfValues = array())
{
Expand Down Expand Up @@ -300,7 +300,7 @@ public function key()
* Method alias to offsetGet
* @see PackageNameWsdlClass::offsetGet()
* @uses PackageNameWsdlClass::offsetGet()
* @param int
* @param int $_index
* @return mixed
*/
public function item($_index)
Expand Down Expand Up @@ -378,7 +378,7 @@ public function last()
* Method testing index in item
* @uses PackageNameWsdlClass::getInternArrayToIterateIsArray()
* @uses PackageNameWsdlClass::getInternArrayToIterate()
* @param int
* @param int $_offset
* @return bool true|false
*/
public function offsetExists($_offset)
Expand All @@ -388,7 +388,7 @@ public function offsetExists($_offset)
/**
* Method returning the item at "index" value
* @uses PackageNameWsdlClass::offsetExists()
* @param int
* @param int $_offset
* @return mixed
*/
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
* @param string method name to get error from
* @param string $_methoName method name to get error from
* @return SoapFault|null
*/
public function getLastErrorForMethod($_methoName)
Expand Down Expand Up @@ -500,8 +500,8 @@ public function getInternArrayToIterateOffset()
* @uses PackageNameWsdlClass::getAttributeName()
* @uses PackageNameWsdlClass::initInternArrayToIterate()
* @uses PackageNameWsdlClass::__toString()
* @param array the array to iterate trough
* @param bool indicates that methods is calling itself
* @param array $_array the array to iterate trough
* @param bool $_internCall indicates that methods is calling itself
* @return void
*/
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()
* @uses WsdlToPhpFunction::setParameterType()
* @uses WsdlToPhpFunction::setReturnType()
* @param string the function name
* @param string the type/name of the parameter
* @param string the type/name of the return value
* @param string $_name the function name
* @param string $_parameterType the type/name of the parameter
* @param string $_returnType the type/name of the return value
* @return WsdlToPhpFunction
*/
public function __construct($_name,$_parameterType,$_returnType)
Expand All @@ -52,7 +52,7 @@ public function __construct($_name,$_parameterType,$_returnType)
* @uses WsdlToPhpModel::getDocumentation()
* @uses WsdlToPhpModel::getGenericWsdlClassName()
* @uses WsdlToPhpModel::cleanString()
* @param int comment part
* @param int $_part comment part
* @return array
*/
public function getComment($_part = '')
Expand Down

0 comments on commit bf30ba9

Please sign in to comment.