We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03d9e48 commit 01a67a9Copy full SHA for 01a67a9
src/Package/Constraint.php
@@ -48,6 +48,7 @@ public function __construct(?string $package = null)
48
*/
49
public static function package(string $package)
50
{
51
+ /** @phpstan-ignore-next-line */
52
return new static($package);
53
}
54
@@ -58,6 +59,7 @@ public static function package(string $package)
58
59
60
public static function php()
61
62
63
return new static('php');
64
65
@@ -68,6 +70,7 @@ public static function php()
68
70
69
71
public static function extension(string $extension)
72
73
74
return new static('ext-' . $extension);
75
76
0 commit comments