Currently the code in de index file, refers to a directory with all lower case characters.
The actual directory is with uppercase.
function __autoload($className) { $fileName = preg_replace('/^BolCom\\\\(\w+)/', 'src/BolCom/$1.php', $className); if (file_exists($fileName)) { return require_once $fileName; } }
Currently the code in de index file, refers to a directory with all lower case characters.
The actual directory is with uppercase.
function __autoload($className) { $fileName = preg_replace('/^BolCom\\\\(\w+)/', 'src/BolCom/$1.php', $className); if (file_exists($fileName)) { return require_once $fileName; } }