From d55ad999b3624c1829cd9ef5296eb2c8486ba9d4 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Sun, 25 Jan 2026 10:00:11 +0100 Subject: [PATCH] refactor: move namespaces one level up (#18) We're moving all classes one namespace layer up (with the exception for extending Database classes. This makes it less verbose and probably save a few seconds to type every time. Reviewed-on: https://codeberg.org/vlw/scaffold/pulls/18 --- src/API/API.php | 4 ++-- src/Database/Database.php | 2 +- src/Database/Model.php | 2 +- src/Helpers/License.php | 2 +- src/Helpers/Paginate.php | 2 +- src/Helpers/UUID.php | 2 +- src/Scaffold.php | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/API/API.php b/src/API/API.php index 01cfa7a..340d433 100644 --- a/src/API/API.php +++ b/src/API/API.php @@ -1,6 +1,6 @@ validate_or_exit(); } - } \ No newline at end of file + } diff --git a/src/Database/Database.php b/src/Database/Database.php index e924d93..f050ee9 100644 --- a/src/Database/Database.php +++ b/src/Database/Database.php @@ -1,6 +1,6 @@