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;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Register the Zend Autoloader - compat only - does nothing
|
|
||||||
*
|
|
||||||
* @deprecated
|
|
||||||
* @return $this
|
|
||||||
*/
|
|
||||||
public function setupZendAutoloader()
|
|
||||||
{
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Setup module manager
|
* Setup module manager
|
||||||
*
|
*
|
||||||
|
|
|
@ -65,7 +65,6 @@ class EmbeddedWeb extends ApplicationBootstrap
|
||||||
protected function bootstrap()
|
protected function bootstrap()
|
||||||
{
|
{
|
||||||
return $this
|
return $this
|
||||||
->setupZendAutoloader()
|
|
||||||
->setupErrorHandling()
|
->setupErrorHandling()
|
||||||
->loadLibraries()
|
->loadLibraries()
|
||||||
->loadConfig()
|
->loadConfig()
|
||||||
|
|
|
@ -81,7 +81,6 @@ class Web extends EmbeddedWeb
|
||||||
protected function bootstrap()
|
protected function bootstrap()
|
||||||
{
|
{
|
||||||
return $this
|
return $this
|
||||||
->setupZendAutoloader()
|
|
||||||
->setupLogging()
|
->setupLogging()
|
||||||
->setupErrorHandling()
|
->setupErrorHandling()
|
||||||
->loadLibraries()
|
->loadLibraries()
|
||||||
|
|
Loading…
Reference in New Issue