Remove deprecated method `ApplicationBootstrap::setupZendAutoloader()` and its uses
This commit is contained in:
parent
577d97a450
commit
eb768b4fce
|
@ -434,17 +434,6 @@ abstract class ApplicationBootstrap
|
|||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Register the Zend Autoloader - compat only - does nothing
|
||||
*
|
||||
* @deprecated
|
||||
* @return $this
|
||||
*/
|
||||
public function setupZendAutoloader()
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setup module manager
|
||||
*
|
||||
|
|
|
@ -65,7 +65,6 @@ class EmbeddedWeb extends ApplicationBootstrap
|
|||
protected function bootstrap()
|
||||
{
|
||||
return $this
|
||||
->setupZendAutoloader()
|
||||
->setupErrorHandling()
|
||||
->loadLibraries()
|
||||
->loadConfig()
|
||||
|
|
|
@ -81,7 +81,6 @@ class Web extends EmbeddedWeb
|
|||
protected function bootstrap()
|
||||
{
|
||||
return $this
|
||||
->setupZendAutoloader()
|
||||
->setupLogging()
|
||||
->setupErrorHandling()
|
||||
->loadLibraries()
|
||||
|
|
Loading…
Reference in New Issue