We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec01f21 commit e5f59dbCopy full SHA for e5f59db
src/TestSize/TestSize.php
@@ -14,22 +14,22 @@
14
*/
15
abstract class TestSize
16
{
17
- public static function unknown(): self
+ public static function unknown(): Unknown
18
19
return new Unknown;
20
}
21
22
- public static function small(): self
+ public static function small(): Small
23
24
return new Small;
25
26
27
- public static function medium(): self
+ public static function medium(): Medium
28
29
return new Medium;
30
31
32
- public static function large(): self
+ public static function large(): Large
33
34
return new Large;
35
0 commit comments