Skip to content

Commit

Permalink
fix cs from zendframework#5613
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Mar 3, 2014
1 parent afac2f9 commit 42f510f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/ZendTest/Soap/Client/DotNetTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
use PHPUnit_Framework_TestCase;
use Zend\Soap\Client\Common;
use Zend\Soap\Client\DotNet as DotNetClient;
use ZendTest\Soap\TestAsset\MockCallUserFunc;

require_once __DIR__ . '/../TestAsset/call_user_func.php';

Expand Down Expand Up @@ -95,7 +94,7 @@ public function testDefaultSoapClientRequestIsDoneWhenNotUsingNtlmAuthentication
{
$unitTest = $this;
$soapClient = new Common(
function(Common $client, $request, $location, $action, $version, $oneWay = null) use ($unitTest) {
function (Common $client, $request, $location, $action, $version, $oneWay = null) use ($unitTest) {
$unitTest->assertEquals('http://unit/test#TestMethod', $action);
$result = '<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">'
. '<s:Body>';
Expand Down

0 comments on commit 42f510f

Please sign in to comment.