2
0

minor spacing cleanup

This commit is contained in:
Sky Johnson 2025-09-11 14:14:25 -05:00
parent 97b654006a
commit 0f89376fa8
5 changed files with 1 additions and 6 deletions

View File

@ -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);
}
}

View File

@ -2,7 +2,6 @@
namespace Web;
/**
* Context holds the request, response, and shared state for a request
*/

View File

@ -2,7 +2,6 @@
namespace Web;
/**
* Response class represents an HTTP response
*/

View File

@ -2,7 +2,6 @@
namespace Web;
/**
* Simplified Auth handles user authentication with external verification
*/

View File

@ -2,7 +2,6 @@
namespace Web;
/**
* AuthMiddleware provides authentication checks for routes
*/