Skip to content

Commit 3be0c11

Browse files
committed
style: fix styling
1 parent cdbf694 commit 3be0c11

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Client implements ClientInterface
3232
public function __construct(
3333
?HttpClientInterface $client = null,
3434
?RequestFactoryInterface $requestFactory = null,
35-
?StreamFactoryInterface $streamFactory = null
35+
?StreamFactoryInterface $streamFactory = null,
3636
) {
3737
$this->client = $client ?: Psr18ClientDiscovery::find();
3838
$this->requestFactory = $requestFactory ?: Psr17FactoryDiscovery::findRequestFactory();

src/Error.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function __construct(
6060
?string $title = null,
6161
?string $detail = null,
6262
?ErrorSource $source = null,
63-
?Meta $meta = null
63+
?Meta $meta = null,
6464
) {
6565
$this->id = $id;
6666
$this->links = $links;

src/Parsers/DocumentParser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function __construct(
3737
ErrorCollectionParser $errorCollectionParser,
3838
LinksParser $linksParser,
3939
JsonapiParser $jsonapiParser,
40-
MetaParser $metaParser
40+
MetaParser $metaParser,
4141
) {
4242
$this->itemParser = $itemParser;
4343
$this->collectionParser = $collectionParser;

0 commit comments

Comments
 (0)