Load Zend on Web and EmbeddedWeb

refs #7464
This commit is contained in:
Eric Lippmann 2014-11-14 14:07:13 +01:00
parent 37dd2f5dd2
commit 029630308d
2 changed files with 4 additions and 1 deletions

View File

@ -27,7 +27,9 @@ class EmbeddedWeb extends ApplicationBootstrap
*/
protected function bootstrap()
{
return $this->loadConfig()
return $this
->setupZendAutoloader()
->loadConfig()
->setupErrorHandling()
->setupTimezone()
->setupModuleManager()

View File

@ -90,6 +90,7 @@ class Web extends ApplicationBootstrap
protected function bootstrap()
{
return $this
->setupZendAutoloader()
->setupLogging()
->setupErrorHandling()
->loadConfig()