From 6cb08ef7a3ec650c36e27a41038a6b3a6d970fd4 Mon Sep 17 00:00:00 2001 From: Sebastian Meyer Date: Sun, 11 Feb 2024 19:17:24 +0100 Subject: [PATCH] Fix typo in phpDoc --- src/ErrorHandlers/TriggerExceptionError.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ErrorHandlers/TriggerExceptionError.php b/src/ErrorHandlers/TriggerExceptionError.php index adfd42c..1b2a64f 100644 --- a/src/ErrorHandlers/TriggerExceptionError.php +++ b/src/ErrorHandlers/TriggerExceptionError.php @@ -29,7 +29,7 @@ use Throwable; * Trigger errors for uncaught exceptions. * * If registered as exception handler, this catches an uncaught exception and - * convert it into an internal PHP error of severity `E_USER_ERROR`. + * converts it into an internal PHP error of severity `E_USER_ERROR`. * * > Usage: `set_exception_handler(new TriggerExceptionError());` *