Remove deprecated method `ApplicationBootstrap::setupZendAutoloader()` and its uses

This commit is contained in:
Sukhwinder Dhillon 2022-05-02 15:40:47 +02:00 committed by Johannes Meyer
parent 577d97a450
commit eb768b4fce
3 changed files with 0 additions and 13 deletions

View File

@ -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
* *

View File

@ -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()

View File

@ -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()