Skip to content

Commit 2a17b7e

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 8b2b699 + a120812 commit 2a17b7e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Tests/LinkedInTransportFactoryTest.php

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

24-
public function createProvider(): iterable
24+
public static function createProvider(): iterable
2525
{
2626
yield [
2727
'linkedin://host.test',
2828
'linkedin://accessToken:UserId@host.test',
2929
];
3030
}
3131

32-
public function supportsProvider(): iterable
32+
public static function supportsProvider(): iterable
3333
{
3434
yield [true, 'linkedin://host'];
3535
yield [false, 'somethingElse://host'];
3636
}
3737

38-
public function incompleteDsnProvider(): iterable
38+
public static function incompleteDsnProvider(): iterable
3939
{
4040
yield 'missing account or user_id' => ['linkedin://AccessTokenOrUserId@default'];
4141
}
4242

43-
public function unsupportedSchemeProvider(): iterable
43+
public static function unsupportedSchemeProvider(): iterable
4444
{
4545
yield ['somethingElse://accessToken:UserId@default'];
4646
}

0 commit comments

Comments
 (0)