Skip to content

Commit

Permalink
Merge pull request #305 from it-can/main
Browse files Browse the repository at this point in the history
Fix php8.4 deprecated notices
  • Loading branch information
Wulfheart authored Feb 4, 2025
2 parents ae6f5e8 + 548aece commit 4647523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Exceptions/MissingCommandSignatureException.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class MissingCommandSignatureException extends Exception
{
public function __construct($action, $code = 0, Throwable $previous = null)
public function __construct($action, $code = 0, ?Throwable $previous = null)
{
$message = sprintf(
'The command signature is missing from your [%s] action. Use `public string $commandSignature` to set it up.',
Expand Down

0 comments on commit 4647523

Please sign in to comment.