Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 97a3fe6

Browse files
Merge branch '6.2' into 6.3
* 6.2: [Translation][Mailer] Convert `$this` calls to static ones in data providers [BC Break] Make data providers for abstract test cases static use TestCase suffix for abstract tests in Tests directories Fix Request locale property doc types [DependencyInjection] Fix autowire attribute with nullable parameters Bump absolute lowest dep to 4.4 remove not needed PHP version switch
2 parents 1852684 + 45ba053 commit 97a3fe6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Tests/SinchTransportFactoryTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,26 +21,26 @@ public function createFactory(): SinchTransportFactory
2121
return new SinchTransportFactory();
2222
}
2323

24-
public function createProvider(): iterable
24+
public static function createProvider(): iterable
2525
{
2626
yield [
2727
'sinch://host.test?from=0611223344',
2828
'sinch://accountSid:[email protected]?from=0611223344',
2929
];
3030
}
3131

32-
public function supportsProvider(): iterable
32+
public static function supportsProvider(): iterable
3333
{
3434
yield [true, 'sinch://accountSid:authToken@default?from=0611223344'];
3535
yield [false, 'somethingElse://accountSid:authToken@default?from=0611223344'];
3636
}
3737

38-
public function missingRequiredOptionProvider(): iterable
38+
public static function missingRequiredOptionProvider(): iterable
3939
{
4040
yield 'missing option: from' => ['sinch://accountSid:authToken@default'];
4141
}
4242

43-
public function unsupportedSchemeProvider(): iterable
43+
public static function unsupportedSchemeProvider(): iterable
4444
{
4545
yield ['somethingElse://accountSid:authToken@default?from=0611223344'];
4646
yield ['somethingElse://accountSid:authToken@default']; // missing "from" option

0 commit comments

Comments
 (0)