Skip to content

Commit

Permalink
adjust to latest cs fixer rules
Browse files Browse the repository at this point in the history
  • Loading branch information
dbu committed Oct 2, 2024
1 parent ed16f52 commit e0a99b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Psr17Factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function __construct(
?ServerRequestFactoryInterface $serverRequestFactory = null,
?StreamFactoryInterface $streamFactory = null,
?UploadedFileFactoryInterface $uploadedFileFactory = null,
?UriFactoryInterface $uriFactory = null
?UriFactoryInterface $uriFactory = null,
) {
$this->requestFactory = $requestFactory;
$this->responseFactory = $responseFactory;
Expand Down
2 changes: 1 addition & 1 deletion src/Psr18Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function __construct(
?ServerRequestFactoryInterface $serverRequestFactory = null,
?StreamFactoryInterface $streamFactory = null,
?UploadedFileFactoryInterface $uploadedFileFactory = null,
?UriFactoryInterface $uriFactory = null
?UriFactoryInterface $uriFactory = null,
) {
$requestFactory ?? $requestFactory = $client instanceof RequestFactoryInterface ? $client : null;
$responseFactory ?? $responseFactory = $client instanceof ResponseFactoryInterface ? $client : null;
Expand Down

0 comments on commit e0a99b0

Please sign in to comment.