Skip to content

Commit f895a90

Browse files
committed
fix: Remove unnecessary PHPStan ignore comment in UrlResolver
1 parent 59dd546 commit f895a90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Resolvers/UrlResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public static function resolve(Auditable $auditable): string
2525
public static function resolveCommandLine(): string
2626
{
2727
$command = Request::server('argv', null);
28-
if (is_array($command)) { // @phpstan-ignore function.impossibleType
28+
if (is_array($command)) {
2929
return implode(' ', $command);
3030
}
3131

0 commit comments

Comments
 (0)