From d99eba7b7d2f1dc554a2ff899fc61eb71da6eb58 Mon Sep 17 00:00:00 2001 From: kenjis Date: Wed, 27 Mar 2024 13:44:38 +0900 Subject: [PATCH] docs: replace description CodeIgniter seems to use the classmap only for the third-party libraries that are included in CI4 core. --- user_guide_src/source/concepts/autoloader.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/user_guide_src/source/concepts/autoloader.rst b/user_guide_src/source/concepts/autoloader.rst index 3c9f1f6ceb44..5b4daab518a5 100644 --- a/user_guide_src/source/concepts/autoloader.rst +++ b/user_guide_src/source/concepts/autoloader.rst @@ -99,9 +99,8 @@ You will need to modify any existing files that are referencing the current name Classmap ======== -The classmap is used extensively by CodeIgniter to eke the last ounces of performance out of the system -by not hitting the file-system with extra ``is_file()`` calls. You can use the classmap to link to -third-party libraries that are not namespaced: +If you use third-party libraries that are not Composer packages and are not namespaced, +you can load those classes using the classmap: .. literalinclude:: autoloader/003.php