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

Commit

Permalink
Merge branch 'cs/zendframework/zendframework#7029-no-space-before-arg…
Browse files Browse the repository at this point in the history
…ument-list-comma' into develop

Close zendframework/zendframework#7029
  • Loading branch information
Ocramius committed Dec 16, 2014
2 parents 90015ad + 3041642 commit a06b182
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,7 @@ public function getLastMethod()
* @param int $oneWay
* @return mixed
*/
public function _doRequest(Client\Common $client, $request, $location,$action, $version, $oneWay = null)
public function _doRequest(Client\Common $client, $request, $location, $action, $version, $oneWay = null)
{
// Perform request as is
if ($oneWay === null) {
Expand Down
2 changes: 1 addition & 1 deletion src/Wsdl.php
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ public function translateType($type)
return $this->classMap[$type];
}

$type = trim($type,'\\');
$type = trim($type, '\\');

// remove namespace,
$pos = strrpos($type, '\\');
Expand Down
2 changes: 1 addition & 1 deletion test/WsdlTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ public function testAddBindingOperationWithAmpersandInUrl($actualUrl, $expectedU
'operation1',
array('use' => 'encoded', 'encodingStyle' => $actualUrl),
array('use' => 'encoded', 'encodingStyle' => $actualUrl),
array('name' => 'MyFault','use' => 'encoded', 'encodingStyle' => $actualUrl)
array('name' => 'MyFault', 'use' => 'encoded', 'encodingStyle' => $actualUrl)
);

$nodes = $this->xpath->query('//wsdl:binding[@type="myPortType" and @name="MyServiceBinding"]/wsdl:operation[@name="operation1"]/wsdl:input/soap:body');
Expand Down

0 comments on commit a06b182

Please sign in to comment.