From 48ee97e6899427f68d66c6319b778507e5f1abea Mon Sep 17 00:00:00 2001 From: Aaron Piotrowski Date: Thu, 10 Oct 2024 21:41:50 -0500 Subject: [PATCH] Style fix --- src/PostgresQueryError.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PostgresQueryError.php b/src/PostgresQueryError.php index 83e1ec1..d3992e2 100644 --- a/src/PostgresQueryError.php +++ b/src/PostgresQueryError.php @@ -13,7 +13,7 @@ public function __construct( string $message, private readonly array $diagnostics, string $query, - \Throwable $previous = null, + ?\Throwable $previous = null, ) { parent::__construct($message, $query, $previous); }