From 5b60f80702c80ee0432f1dc0fae05910264539dc Mon Sep 17 00:00:00 2001 From: Toto Date: Mon, 13 Oct 2025 11:53:21 +0700 Subject: [PATCH] docs(config): add note about Paths class requirements - explain class requirements prior to autoloader instantiation - clarify that Paths class does not extend BaseConfig - see #7702 --- admin/starter/app/Config/Paths.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/admin/starter/app/Config/Paths.php b/admin/starter/app/Config/Paths.php index d0035fbcfb9b..39a902029882 100644 --- a/admin/starter/app/Config/Paths.php +++ b/admin/starter/app/Config/Paths.php @@ -12,6 +12,9 @@ * share a system folder between multiple applications, and more. * * All paths are relative to the project's root folder. + * + * NOTE: This class is required prior to Autoloader instantiation, + * and does not extend BaseConfig. */ class Paths {