From 0f89376fa80919fc7b1df36bf3d89b029d97bd28 Mon Sep 17 00:00:00 2001 From: Sky Johnson Date: Thu, 11 Sep 2025 14:14:25 -0500 Subject: [PATCH] minor spacing cleanup --- App.php | 3 +-- Context.php | 1 - Response.php | 1 - auth/Auth.php | 1 - auth/AuthMiddleware.php | 1 - 5 files changed, 1 insertion(+), 6 deletions(-) diff --git a/App.php b/App.php index a3e7492..7abb43c 100644 --- a/App.php +++ b/App.php @@ -2,7 +2,6 @@ namespace Web; - /** * App is the application controller itself */ @@ -160,7 +159,7 @@ class App ); $chain(); - } catch (Exception $e) { + } catch (\Exception $e) { $this->errorHandler->handleException($this->context, $e); } } diff --git a/Context.php b/Context.php index 16c5a2e..771d1b3 100644 --- a/Context.php +++ b/Context.php @@ -2,7 +2,6 @@ namespace Web; - /** * Context holds the request, response, and shared state for a request */ diff --git a/Response.php b/Response.php index 463fdf0..4faf527 100644 --- a/Response.php +++ b/Response.php @@ -2,7 +2,6 @@ namespace Web; - /** * Response class represents an HTTP response */ diff --git a/auth/Auth.php b/auth/Auth.php index c78a8ca..2f9d486 100644 --- a/auth/Auth.php +++ b/auth/Auth.php @@ -2,7 +2,6 @@ namespace Web; - /** * Simplified Auth handles user authentication with external verification */ diff --git a/auth/AuthMiddleware.php b/auth/AuthMiddleware.php index 443554a..17e3aec 100644 --- a/auth/AuthMiddleware.php +++ b/auth/AuthMiddleware.php @@ -2,7 +2,6 @@ namespace Web; - /** * AuthMiddleware provides authentication checks for routes */