Skip to content

Commit 1a6c38b

Browse files
committed
Fix one more missing implicit nullable type
1 parent 8385ace commit 1a6c38b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Bitbucket/API/Http/HttpPluginClientBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class HttpPluginClientBuilder
3030
/**
3131
* @param MessageFactory|RequestFactoryInterface|null $requestFactory
3232
*/
33-
public function __construct(?ClientInterface $httpClient = null, $requestFactory = null, StreamFactoryInterface $streamFactory = null)
33+
public function __construct(?ClientInterface $httpClient = null, $requestFactory = null, ?StreamFactoryInterface $streamFactory = null)
3434
{
3535
$requestFactory = $requestFactory ?? Psr17FactoryDiscovery::findRequestFactory();
3636
if ($requestFactory instanceof MessageFactory) {

0 commit comments

Comments
 (0)