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

Commit

Permalink
[UPDATE] minor comment update
Browse files Browse the repository at this point in the history
[UPDATE] minor comment update to indicate test case for unclean
operation name
  • Loading branch information
DELSOL Mikaël committed Jan 14, 2013
1 parent 9e5caac commit 650704a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions WsdlToPhpGenerator.php
Expand Up @@ -93,6 +93,8 @@
* A method without any parameter :
* - http://verkopen.marktplaats.nl/soap/mpplt.php?wsdl (GetCategoryList, GetCategoryListRevision, GetPriceTypeList, GetPriceTypeListRevision, GetAttributeListRevision, GetSystemTimestamp)
* - https://gateway2.pagosonline.net/ws/WebServicesClientesUT?wsdl (doInit(), TestServiceGet, TestServiceLeer)
* Operation name with illegal characters :
* - https://raw.github.com/Sn3b/Omniture-API/master/Solution%20Items/OmnitureAdminServices.wsdl (. in the operation name, so __soapCall method is used)
* @package WsdlToPhpGenerator
* @date 19/12/2012
*/
Expand Down Expand Up @@ -632,7 +634,7 @@ private function generateStructsClasses($_rootDirectory,$_rootDirectoryRights)
unset($structTmp,$structsToGenerateDone);
foreach($structs as $structName=>$struct)
{
if(!$struct->getIsStruct() || (count($struct->getAttributes()) === 0 && $struct->getInheritance() == ''))
if(!$struct->getIsStruct() || (count($struct->getAttributes()) ===0 && $struct->getInheritance() == ''))
continue;
$elementFolder = $this->getDirectory($_rootDirectory,$_rootDirectoryRights,$struct->getCleanName());
$structsClassesFiles[] = $structClassFileName = $elementFolder . $struct->getPackagedName() . '.php';
Expand Down Expand Up @@ -2144,8 +2146,8 @@ private function getSubCategory($_string)
}
/**
* Get gather name class
* @param string $_string element name
* @return string
* @param string $_string element name
* @return string
*/
private function getGather($_string)
{
Expand Down

0 comments on commit 650704a

Please sign in to comment.