Skip to content

Commit e5a742b

Browse files
authored
🚨 Apply PHP CS Fixer fixes (#1219)
1 parent b0221b6 commit e5a742b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Provider/AbstractHttpProvider.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ abstract class AbstractHttpProvider extends AbstractProvider
4646
/**
4747
* @param Psr17Factory|MessageFactory|null $factory Passing a MessageFactory is @deprecated
4848
*/
49-
public function __construct(ClientInterface $client, MessageFactory|Psr17Factory $factory = null)
49+
public function __construct(ClientInterface $client, MessageFactory|Psr17Factory|null $factory = null)
5050
{
5151
$this->client = $client;
5252
$this->messageFactory = $factory ?? ($client instanceof RequestFactoryInterface && $client instanceof StreamFactoryInterface ? $client : new Psr17Factory());
@@ -72,7 +72,7 @@ protected function getRequest(string $url): RequestInterface
7272
/**
7373
* @param array<string,string|string[]> $headers
7474
*/
75-
protected function createRequest(string $method, string $uri, array $headers = [], string $body = null): RequestInterface
75+
protected function createRequest(string $method, string $uri, array $headers = [], ?string $body = null): RequestInterface
7676
{
7777
if ($this->messageFactory instanceof MessageFactory) {
7878
return $this->messageFactory->createRequest($method, $uri, $headers, $body);

0 commit comments

Comments
 (0)