SYSPATH * `]; */ $psr4 = [ 'App' => APPPATH, // To ensure filters, etc still found, APP_NAMESPACE => APPPATH, // For custom namespace 'Config' => APPPATH . 'Config', ]; /** * ------------------------------------------------------------------- * 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: * * $Config['classmap'] = [ * 'MyClass' => '/path/to/class/file.php' * ]; */ $classmap = []; //-------------------------------------------------------------------- // Do Not Edit Below This Line //-------------------------------------------------------------------- $this->psr4 = array_merge($this->psr4, $psr4); $this->classmap = array_merge($this->classmap, $classmap); unset($psr4, $classmap); } //-------------------------------------------------------------------- }