Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Dec 26, 2024
1 parent 20290d9 commit 6f4d78c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Workbench.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public static function laravelPath(array|string $path = ''): string
public static function packagePath(array|string $path = ''): string
{
return package_path(
...Arr::wrap(\func_num_args() > 1 ? \func_get_args() : $path)
...Arr::wrap(\func_num_args() > 1 ? \func_get_args() : $path) // @phpstan-ignore argument.named
);
}

Expand All @@ -63,7 +63,7 @@ public static function packagePath(array|string $path = ''): string
public static function path(array|string $path = ''): string
{
return workbench_path(
...Arr::wrap(\func_num_args() > 1 ? \func_get_args() : $path)
...Arr::wrap(\func_num_args() > 1 ? \func_get_args() : $path) // @phpstan-ignore argument.named
);
}

Expand Down

0 comments on commit 6f4d78c

Please sign in to comment.