Skip to content

Commit f0c8b16

Browse files
committed
Merge branch '5.2' into 5.x
* 5.2: [CS] [5.2] Replace easy occurrences of ?: with ??
2 parents 53f14fa + 200f009 commit f0c8b16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/SmsapiTransportTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ final class SmsapiTransportTest extends TransportTestCase
2626
*/
2727
public function createTransport(?HttpClientInterface $client = null): TransportInterface
2828
{
29-
return (new SmsapiTransport('testToken', 'testFrom', $client ?: $this->createMock(HttpClientInterface::class)))->setHost('test.host');
29+
return (new SmsapiTransport('testToken', 'testFrom', $client ?? $this->createMock(HttpClientInterface::class)))->setHost('test.host');
3030
}
3131

3232
public function toStringProvider(): iterable

0 commit comments

Comments
 (0)