From 548aeced1d2fa849f61aa6692226ec799d75488a Mon Sep 17 00:00:00 2001 From: Michiel Vugteveen Date: Mon, 13 Jan 2025 20:11:46 +0100 Subject: [PATCH] Fix php8.4 deprecated notices --- src/Exceptions/MissingCommandSignatureException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Exceptions/MissingCommandSignatureException.php b/src/Exceptions/MissingCommandSignatureException.php index 0763ba6..d982ca6 100644 --- a/src/Exceptions/MissingCommandSignatureException.php +++ b/src/Exceptions/MissingCommandSignatureException.php @@ -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.',