Skip to content

Commit fef391f

Browse files
authored
Apply fixes from StyleCI (#16)
1 parent c8e6cbd commit fef391f

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/Client/Request.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ public function arguments(): array
6464
{
6565
$xml = SoapXml::fromString($this->xmlContent());
6666
$arguments = Arr::first(XMLSerializer::domNodeToArray($xml->getBody()));
67+
6768
return $arguments ?? [];
6869
}
6970
}

src/SoapFactory.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
use GuzzleHttp\Psr7\Response as Psr7Response;
1010
use Illuminate\Support\Str;
1111
use Illuminate\Support\Traits\Macroable;
12-
use PHPUnit\Framework\Assert as PHPUnit;
1312

1413
class SoapFactory
1514
{
@@ -85,11 +84,13 @@ public function isRecording()
8584
return $this->recording;
8685
}
8786

88-
public function getResponseSequences() {
87+
public function getResponseSequences()
88+
{
8989
return $this->responseSequences;
9090
}
9191

92-
public function getRecorded() {
92+
public function getRecorded()
93+
{
9394
return $this->recorded;
9495
}
9596

src/SoapTesting.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
namespace CodeDredd\Soap;
34

45
use CodeDredd\Soap\Client\Request;

0 commit comments

Comments
 (0)