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 */