From 254435e8eb20466f93c1a589496f47cc4b53c218 Mon Sep 17 00:00:00 2001 From: kenjis Date: Thu, 13 Jul 2023 16:14:59 +0900 Subject: [PATCH] docs: add notes --- app/Config/Autoload.php | 5 ++++- app/Config/Modules.php | 5 +++++ app/Config/Paths.php | 3 +++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/app/Config/Autoload.php b/app/Config/Autoload.php index abd9df9dfd..e9ee6613d2 100644 --- a/app/Config/Autoload.php +++ b/app/Config/Autoload.php @@ -13,7 +13,10 @@ use CodeIgniter\Config\AutoloadConfig; * can find the files as needed. * * NOTE: If you use an identical key in $psr4 or $classmap, then - * the values in this file will overwrite the framework's values. + * the values in this file will overwrite the framework's values. + * + * NOTE: This class is required prior to Autoloader instantiation, + * and does not extend BaseConfig. */ class Autoload extends AutoloadConfig { diff --git a/app/Config/Modules.php b/app/Config/Modules.php index 5b6a639b39..7e4916dd8f 100644 --- a/app/Config/Modules.php +++ b/app/Config/Modules.php @@ -4,6 +4,11 @@ namespace Config; use CodeIgniter\Modules\Modules as BaseModules; +/** + * Modules Configuration. + * + * NOTE: This class is required prior to Autoloader instantiation. + */ class Modules extends BaseModules { /** diff --git a/app/Config/Paths.php b/app/Config/Paths.php index 01d5a8132d..262c745ffa 100644 --- a/app/Config/Paths.php +++ b/app/Config/Paths.php @@ -13,6 +13,9 @@ namespace Config; * * All paths are relative to the project's root folder. * + * NOTE: This class is required prior to Autoloader instantiation, + * and does not extend BaseConfig. + * * @immutable */ class Paths