Skip to content

Commit be9204e

Browse files
committed
docs: add *** for headings
1 parent 1328252 commit be9204e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

user_guide_src/source/concepts/autoloader.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ classes that your project is using. Keeping track of where every single file is,
1313
hard-coding that location into your files in a series of ``requires()`` is a massive
1414
headache and very error-prone. That's where autoloaders come in.
1515

16+
***********************
1617
CodeIgniter4 Autoloader
1718
***********************
1819

@@ -36,12 +37,14 @@ beginning of the framework's execution.
3637
file name case is incorrect, the autoloader cannot find the file on the
3738
server.
3839

40+
*************
3941
Configuration
4042
*************
4143

4244
Initial configuration is done in **app/Config/Autoload.php**. This file contains two primary
4345
arrays: one for the classmap, and one for PSR-4 compatible namespaces.
4446

47+
**********
4548
Namespaces
4649
**********
4750

@@ -76,6 +79,7 @@ You will need to modify any existing files that are referencing the current name
7679
expect. This allows the core system files to always be able to locate them, even when the application
7780
namespace has changed.
7881

82+
********
7983
Classmap
8084
********
8185

@@ -87,6 +91,7 @@ third-party libraries that are not namespaced:
8791

8892
The key of each row is the name of the class that you want to locate. The value is the path to locate it at.
8993

94+
****************
9095
Composer Support
9196
****************
9297

0 commit comments

Comments
 (0)