Skip to content

Commit a408c48

Browse files
committed
Merge branch '5.2' into 5.x
* 5.2: [CS] [5.2] Replace easy occurrences of ?: with ??
2 parents bf21bef + cdaf3df commit a408c48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RetryableHttpClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function __construct(HttpClientInterface $client, RetryStrategyInterface
4343
$this->client = $client;
4444
$this->strategy = $strategy ?? new GenericRetryStrategy();
4545
$this->maxRetries = $maxRetries;
46-
$this->logger = $logger ?: new NullLogger();
46+
$this->logger = $logger ?? new NullLogger();
4747
}
4848

4949
public function request(string $method, string $url, array $options = []): ResponseInterface

0 commit comments

Comments
 (0)