|string> */ public $psr4 = [ APP_NAMESPACE => APPPATH, ]; /** * ------------------------------------------------------------------- * 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 = []; /** * ------------------------------------------------------------------- * Files * ------------------------------------------------------------------- * The files array provides a list of paths to __non-class__ files * that will be autoloaded. This can be useful for bootstrap operations * or for loading functions. * * Prototype: * $files = [ * '/path/to/my/file.php', * ]; * * @var list */ public $files = []; /** * ------------------------------------------------------------------- * Helpers * ------------------------------------------------------------------- * Prototype: * $helpers = [ * 'form', * ]; * * @var list */ public $helpers = []; }