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

fix cs from #5613 #5899

Merged
merged 1 commit into from Mar 3, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions tests/ZendTest/Soap/Client/DotNetTest.php
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