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 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Client/Common.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ public function __doRequest($request, $location, $action, $version, $one_way = n
{
if ($one_way === null) {
return call_user_func($this->doRequestCallback, $this, $request, $location, $action, $version);
} else {
return call_user_func($this->doRequestCallback, $this, $request, $location, $action, $version, $one_way);
}

return call_user_func($this->doRequestCallback, $this, $request, $location, $action, $version, $one_way);
}

}
Expand Down
4 changes: 2 additions & 2 deletions src/Wsdl/ComplexTypeStrategy/ArrayOfTypeSequence.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ protected function _getTypeBasedOnNestingLevel($singularType, $level)
if ($level == 0) {
// This is not an Array anymore, return the xsd simple type
return $this->getContext()->getType($singularType);
} else {
return 'tns:' . str_repeat('ArrayOf', $level) . ucfirst($this->getContext()->translateType($singularType));
}

return 'tns:' . str_repeat('ArrayOf', $level) . ucfirst($this->getContext()->translateType($singularType));
}

/**
Expand Down

0 comments on commit becf6c6

Please sign in to comment.