From af0e9f291de7fdbee70cb81d638c362293193b3c Mon Sep 17 00:00:00 2001 From: Dave Mc Nicoll Date: Wed, 17 Jun 2026 21:00:58 +0000 Subject: [PATCH] - Fixed some mistyped variables --- src/Handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Handler.php b/src/Handler.php index ed36d89..7ce8483 100644 --- a/src/Handler.php +++ b/src/Handler.php @@ -23,7 +23,7 @@ abstract class Handler { public abstract function handleException(\Throwable $ex) : array; - public function __construct(SoftwareConfig $config, ? DataInterface $dataManipulator = null, ? Closure $callback = null, Transport\TransportInterface $transport = null) + public function __construct(SoftwareConfig $config, ? DataInterface $dataManipulator = null, ? Closure $callback = null, ? Transport\TransportInterface $transport = null) { $this->config = $config;