You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: user_guide_src/source/general/modules.rst
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,10 +39,9 @@ Open **app/Config/Autoload.php** and add the **Acme** namespace to the ``psr4``
39
39
'Acme' => ROOTPATH.'acme'
40
40
];
41
41
42
-
Now that this is setup we can access any file within the **acme** folder through the ``Acme`` namespace. This alone
43
-
takes care of 80% of what is needed for modules to work, so you should be sure to familiarize yourself within namespaces
44
-
and become comfortable with their use. A number of the file types will be scanned for automatically through all defined
45
-
namespaces here, making this crucial to working with modules at all.
42
+
Now that this is set up, we can access any file within the **acme** folder through the ``Acme`` namespace. This alone
43
+
takes care of 80% of what is needed for modules to work, so you should be sure to familiarize yourself with namespaces
44
+
and become comfortable with their use. Several file types will be scanned for automatically through all defined namespaces - a crucial ingredient for working with modules.
46
45
47
46
A common directory structure within a module will mimic the main application folder::
0 commit comments