File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -31,33 +31,33 @@ abstract public function createFactory(): TransportFactoryInterface;
31
31
/**
32
32
* @return iterable<array{0: bool, 1: string}>
33
33
*/
34
- abstract public function supportsProvider (): iterable ;
34
+ abstract public static function supportsProvider (): iterable ;
35
35
36
36
/**
37
37
* @return iterable<array{0: string, 1: string, 2: TransportInterface}>
38
38
*/
39
- abstract public function createProvider (): iterable ;
39
+ abstract public static function createProvider (): iterable ;
40
40
41
41
/**
42
42
* @return iterable<array{0: string, 1: string|null}>
43
43
*/
44
- public function unsupportedSchemeProvider (): iterable
44
+ public static function unsupportedSchemeProvider (): iterable
45
45
{
46
46
return [];
47
47
}
48
48
49
49
/**
50
50
* @return iterable<array{0: string, 1: string|null}>
51
51
*/
52
- public function incompleteDsnProvider (): iterable
52
+ public static function incompleteDsnProvider (): iterable
53
53
{
54
54
return [];
55
55
}
56
56
57
57
/**
58
58
* @return iterable<array{0: string, 1: string|null}>
59
59
*/
60
- public function missingRequiredOptionProvider (): iterable
60
+ public static function missingRequiredOptionProvider (): iterable
61
61
{
62
62
return [];
63
63
}
You can’t perform that action at this time.
0 commit comments