Skip to content

Commit cdaf3df

Browse files
committed
[CS] [5.2] Replace easy occurrences of ?: with ??
1 parent c6bd591 commit cdaf3df

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)