Skip to content

Commit 4d730ff

Browse files
Merge branch '5.4' into 6.2
* 5.4: [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 Bump absolute lowest dep to 4.4
2 parents defa92b + cb6e198 commit 4d730ff

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Tests/ClickatellTransportFactoryTest.php

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

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

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

38-
public function incompleteDsnProvider(): iterable
38+
public static function incompleteDsnProvider(): iterable
3939
{
4040
yield 'missing auth token' => ['clickatell://host?from=FROM'];
4141
}
4242

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

0 commit comments

Comments
 (0)