From fe684bf7e698e7dade337a909ae01a2e4c9898e3 Mon Sep 17 00:00:00 2001 From: Xnopyt Date: Wed, 30 Jul 2025 20:31:15 +0100 Subject: [PATCH] Fix PHP 8.4 deprecation warnings --- src/Exception/JobRuntimeException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Exception/JobRuntimeException.php b/src/Exception/JobRuntimeException.php index 7c025b3..ecf213e 100644 --- a/src/Exception/JobRuntimeException.php +++ b/src/Exception/JobRuntimeException.php @@ -15,7 +15,7 @@ public function __construct( protected JobInterface $job, string $message, int $code = 0, - \Throwable $previous = null, + ?\Throwable $previous = null, ) { parent::__construct($message, $code, $previous); }