docs: add notes

This commit is contained in:
kenjis 2023-07-13 16:14:59 +09:00
parent 46a2703e61
commit 254435e8eb
No known key found for this signature in database
GPG Key ID: BD254878922AF198
3 changed files with 12 additions and 1 deletions

View File

@ -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
{

View File

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

View File

@ -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