Autoloading Framework Components
The framework implements an advanced autoloading system that automatically manages class and function dependencies. This means:
Don't use
require_once
,require
,include_once
orinclude
for framework filesAll framework classes and functions are automatically available
The autoloader handles dependency resolution efficiently
Proper namespacing ensures no conflicts between components
Framework core files are loaded in optimal order
Better performance by avoiding redundant file inclusions
Example of correct usage:
Last updated