Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
shaedrich authored Dec 20, 2024
1 parent a232e05 commit 46a6f63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Console/Scheduling/ManagesFrequencies.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function parseAtExpression(string $expression)
'midnight' => $this->daily(),
default => method_exists($this, $expression)
? $this->{$expression}()
: throw new InvalidArgumentException("The at expression [$expression] is invalid");
: throw new InvalidArgumentException("The at expression [$expression] is invalid"),
};

return $this;
Expand Down

0 comments on commit 46a6f63

Please sign in to comment.