Skip to content

Commit

Permalink
Correct reference to Request facade (#887)
Browse files Browse the repository at this point in the history
  • Loading branch information
robin-trigg authored Dec 31, 2023
1 parent b184eb1 commit 42ebec8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resolvers/UrlResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static function resolve(Auditable $auditable): string

public static function resolveCommandLine(): string
{
$command = \Request::server('argv', null);
$command = Request::server('argv', null);
if (is_array($command)) {
return implode(' ', $command);
}
Expand Down

0 comments on commit 42ebec8

Please sign in to comment.