Skip to content

Commit 4647523

Browse files
authored
Merge pull request #305 from it-can/main
Fix php8.4 deprecated notices
2 parents ae6f5e8 + 548aece commit 4647523

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Exceptions/MissingCommandSignatureException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

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

0 commit comments

Comments
 (0)