Skip to content

Commit b7520e6

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/LinkedInTransportTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ final class LinkedInTransportTest extends TransportTestCase
2323
*/
2424
public function createTransport(?HttpClientInterface $client = null): TransportInterface
2525
{
26-
return (new LinkedInTransport('AuthToken', 'AccountId', $client ?: $this->createMock(HttpClientInterface::class)))->setHost('host.test');
26+
return (new LinkedInTransport('AuthToken', 'AccountId', $client ?? $this->createMock(HttpClientInterface::class)))->setHost('host.test');
2727
}
2828

2929
public function toStringProvider(): iterable

0 commit comments

Comments
 (0)