ApplicationBootstrap: wipe setupZendAutoloader()

This commit is contained in:
Thomas Gelf 2015-11-12 17:36:34 +01:00
parent d0ce9f86d8
commit a94662492b

View File

@ -358,20 +358,15 @@ abstract class ApplicationBootstrap
/** /**
* Register the Zend Autoloader * Register the Zend Autoloader
* *
* Deprecated, compat only - does nothing
*
* @return $this * @return $this
*/ */
public function setupZendAutoloader() public function setupZendAutoloader()
{ {
require_once 'Zend/Loader/Autoloader.php';
\Zend_Loader_Autoloader::getInstance();
\Zend_Paginator::addScrollingStylePrefixPath(
'Icinga_Web_Paginator_ScrollingStyle_', $this->libDir . '/Icinga/Web/Paginator/ScrollingStyle'
);
return $this; return $this;
} }
/** /**
* Setup module manager * Setup module manager
* *