The Autoloader checks a lot of paths for classes. Trim this down and do some method extraction in Autoloader::load(); maybe some protected methods like Autoloader::generatePaths($basePath, $class) and accepting an array of paths in Autoloader::attempt().
The Autoloader checks a lot of paths for classes. Trim this down and do some method extraction in
Autoloader::load()
; maybe some protected methods likeAutoloader::generatePaths($basePath, $class)
and accepting an array of paths inAutoloader::attempt()
.