Skip to content

Commit 01a67a9

Browse files
committed
Ignore Stan errors
1 parent 03d9e48 commit 01a67a9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Package/Constraint.php

+3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ public function __construct(?string $package = null)
4848
*/
4949
public static function package(string $package)
5050
{
51+
/** @phpstan-ignore-next-line */
5152
return new static($package);
5253
}
5354

@@ -58,6 +59,7 @@ public static function package(string $package)
5859
*/
5960
public static function php()
6061
{
62+
/** @phpstan-ignore-next-line */
6163
return new static('php');
6264
}
6365

@@ -68,6 +70,7 @@ public static function php()
6870
*/
6971
public static function extension(string $extension)
7072
{
73+
/** @phpstan-ignore-next-line */
7174
return new static('ext-' . $extension);
7275
}
7376

0 commit comments

Comments
 (0)