File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -30,22 +30,18 @@ class Autoload extends AutoloadConfig
30
30
* their location on the file system. These are used by the autoloader
31
31
* to locate files the first time they have been instantiated.
32
32
*
33
- * The '/app' and '/system' directories are already mapped for you.
34
- * you may change the name of the 'App' namespace if you wish,
33
+ * The 'Config' (APPPATH . 'Config') and 'CodeIgniter' (SYSTEMPATH) are
34
+ * already mapped for you.
35
+ *
36
+ * You may change the name of the 'App' namespace if you wish,
35
37
* but this should be done prior to creating any namespaced classes,
36
38
* else you will need to modify all of those classes for this to work.
37
39
*
38
- * Prototype:
39
- * $psr4 = [
40
- * 'CodeIgniter' => SYSTEMPATH,
41
- * 'App' => APPPATH
42
- * ];
43
- *
44
40
* @var array<string, array<int, string>|string>
45
41
* @phpstan-var array<string, string|list<string>>
46
42
*/
47
43
public $ psr4 = [
48
- APP_NAMESPACE => APPPATH , // For custom app namespace
44
+ APP_NAMESPACE => APPPATH ,
49
45
];
50
46
51
47
/**
You can’t perform that action at this time.
0 commit comments