Skip to content

docs: add missing core classes #8189

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions user_guide_src/source/extending/core_classes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,26 +22,41 @@ System Class List
The following is a list of the core system classes that are invoked every time CodeIgniter runs:

* ``CodeIgniter\Autoloader\Autoloader``
* ``CodeIgniter\Autoloader\FileLocator``
* ``CodeIgniter\Cache\CacheFactory``
* ``CodeIgniter\Cache\Handlers\BaseHandler``
* ``CodeIgniter\Cache\Handlers\FileHandler``
* ``CodeIgniter\Cache\ResponseCache``
* ``CodeIgniter\CodeIgniter``
* ``CodeIgniter\Config\BaseService``
* ``CodeIgniter\Config\DotEnv``
* ``CodeIgniter\Config\Factories``
* ``CodeIgniter\Config\Services``
* ``CodeIgniter\Controller``
* ``CodeIgniter\Cookie\Cookie``
* ``CodeIgniter\Cookie\CookieStore``
* ``CodeIgniter\Debug\Exceptions``
* ``CodeIgniter\Debug\Timer``
* ``CodeIgniter\Events\Events``
* ``CodeIgniter\Filters\Filters``
* ``CodeIgniter\HTTP\ContentSecurityPolicy``
* ``CodeIgniter\HTTP\CLIRequest`` (if launched from command line only)
* ``CodeIgniter\HTTP\ContentSecurityPolicy``
* ``CodeIgniter\HTTP\Header``
* ``CodeIgniter\HTTP\IncomingRequest`` (if launched over HTTP)
* ``CodeIgniter\HTTP\Message``
* ``CodeIgniter\HTTP\OutgoingRequest``
* ``CodeIgniter\HTTP\Request``
* ``CodeIgniter\HTTP\Response``
* ``CodeIgniter\HTTP\Message``
* ``CodeIgniter\HTTP\SiteURI``
* ``CodeIgniter\HTTP\SiteURIFactory``
* ``CodeIgniter\HTTP\URI``
* ``CodeIgniter\HTTP\UserAgent`` (if launched over HTTP)
* ``CodeIgniter\Log\Logger``
* ``CodeIgniter\Log\Handlers\BaseHandler``
* ``CodeIgniter\Log\Handlers\FileHandler``
* ``CodeIgniter\Router\RouteCollection``
* ``CodeIgniter\Router\Router``
* ``CodeIgniter\Superglobals``
* ``CodeIgniter\View\View``

Replacing Core Classes
Expand Down