diff options
Diffstat (limited to 'src/Concerns/Makable.php')
-rw-r--r-- | src/Concerns/Makable.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Concerns/Makable.php b/src/Concerns/Makable.php index 7562970..b215b2d 100644 --- a/src/Concerns/Makable.php +++ b/src/Concerns/Makable.php @@ -6,6 +6,6 @@ trait Makable { public static function make(mixed ...$args): static { - return new static(...$args); + return new static(...$args); // @phpstan-ignore new.static } } |