SYSTEMPATH, * 'App' => APPPATH * ]; * * @var array */ public $psr4 = [ APP_NAMESPACE => APPPATH, 'Config' => APPPATH . 'Config', 'ActivityPub' => APPPATH . 'Libraries/ActivityPub', 'Analytics' => APPPATH . 'Libraries/Analytics', ]; /** * ------------------------------------------------------------------- * Class Map * ------------------------------------------------------------------- * The class map provides a map of class names and their exact * location on the drive. Classes loaded in this manner will have * slightly faster performance because they will not have to be * searched for within one or more directories as they would if they * were being autoloaded through a namespace. * * Prototype: * * $classmap = [ * 'MyClass' => '/path/to/class/file.php' * ]; * * @var array */ public $classmap = []; }