Skip to content

Commit eb5a53f

Browse files
committed
Fix cs
1 parent 2c3fe3d commit eb5a53f

5 files changed

+8
-11
lines changed

tests/Unit/HttpBinding/SoapActionTest.php

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
final class SoapActionTest extends TestCase
1313
{
14-
1514
public function test_it_can_detect_soap_action_from_soap_11__soap_action_header()
1615
{
1716
$request = $this->createRequest()->withAddedHeader('SoapAction', 'actionhere');

tests/Unit/Middleware/Wsdl/DisableExtensionsMiddlewareTest.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ public function test_it_removes_required_wsdl_extensions()
4040
{
4141
$this->mockClient->addResponse(
4242
new Response(
43-
200,
44-
[],
45-
file_get_contents(FIXTURE_DIR . '/wsdl/wsdl-extensions.wsdl')
46-
)
43+
200,
44+
[],
45+
file_get_contents(FIXTURE_DIR . '/wsdl/wsdl-extensions.wsdl')
46+
)
4747
);
4848

4949
$response = $this->client->sendRequest(new Request('POST', '/'));

tests/Unit/Middleware/Wsdl/DisablePoliciesMiddlewareTest.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ public function test_it_removes_wsdl_policies()
3737
{
3838
$this->mockClient->addResponse(
3939
new Response(
40-
200,
41-
[],
42-
file_get_contents(FIXTURE_DIR . '/wsdl/wsdl-policies.wsdl')
43-
)
40+
200,
41+
[],
42+
file_get_contents(FIXTURE_DIR . '/wsdl/wsdl-policies.wsdl')
43+
)
4444
);
4545

4646
$response = $this->client->sendRequest(new Request('POST', '/'));

tests/Unit/Wsdl/Psr18LoaderTest.php

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
final class Psr18LoaderTest extends TestCase
1414
{
15-
1615
public function test_it_can_load_wsdl_through_psr18_client(): void
1716
{
1817
$expected = '<definitions />';

tests/Unit/Xml/XmlMessageManipulatorTest.php

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
final class XmlMessageManipulatorTest extends TestCase
1414
{
15-
1615
public function test_it_can_manipulate_an_xml_stream(): void
1716
{
1817
$xml = '<hello />';

0 commit comments

Comments
 (0)