You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class Autoload extends \CodeIgniter\Config\AutoloadConfig
{
public $psr4 = [
'Modules' => ROOTPATH.'modules'
];
public function __construct()
{
print_r($this->psr4); //here is good
parent::__construct();
print_r($this->psr4); //here is error. no 'Modules' => ROOTPATH.'modules'
Activity