I am getting a grip on Zend_Autoload but a non-zend class I have is not loading when extended.
The autoloader is initialized like so:
// Initialise Autoloader
$autoloader = Zend_Loader_Autoloader::getInstance();
$autoloader->suppressNotFoundWarnings(true);
$autoloader->setFallbackAutoloader(true);
$autoloader->registerNamespace('lib_');
}
It all works fine with other classes. Is it required to load abstract class files and implemented interfaces manually beforehand?