From d8e108295cca2d1f992c3f7430b0622231e2a734 Mon Sep 17 00:00:00 2001 From: fadrian06 Date: Wed, 1 Apr 2026 13:15:26 -0400 Subject: [PATCH] simplify error handling custom methods docblocks --- src/Engine.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Engine.php b/src/Engine.php index 6557342..cfbcdf7 100644 --- a/src/Engine.php +++ b/src/Engine.php @@ -170,8 +170,7 @@ class Engine ////////////////// /** - * Custom error handler. Converts errors into exceptions. - * + * Converts errors into exceptions * @param int $errno Level of the error raised. * @param string $errstr Error message. * @param string $errfile Filename that the error was raised in. @@ -188,7 +187,7 @@ class Engine return false; } - /** Custom exception handler. Logs exceptions */ + /** Logs exceptions */ public function handleException(Throwable $ex): void { if ($this->get('flight.log_errors')) {