Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix syntax error
Browse files Browse the repository at this point in the history
shaedrich authored Dec 20, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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
@@ -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;

0 comments on commit 46a6f63

Please sign in to comment.