Fix badly named class

This commit is contained in:
Benoît Burnichon
2016-04-12 17:46:29 +02:00
parent dc2dee30af
commit ded66ac8d1
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
use Alchemy\Phrasea\Application; use Alchemy\Phrasea\Application;
return (new Application\WebBaseApplicationLoader())->buildApplication( return (new Application\WebApplicationLoader())->buildApplication(
isset($environment) ? $environment : Application::ENV_PROD, isset($environment) ? $environment : Application::ENV_PROD,
isset($forceDebug) ? $forceDebug : false isset($forceDebug) ? $forceDebug : false
); );

View File

@@ -17,7 +17,7 @@ use Alchemy\Phrasea\Core\Event\Subscriber\JsonRequestSubscriber;
use Alchemy\Phrasea\Core\Event\Subscriber\PhraseaExceptionHandlerSubscriber; use Alchemy\Phrasea\Core\Event\Subscriber\PhraseaExceptionHandlerSubscriber;
use Alchemy\Phrasea\Core\Middleware\SetupMiddlewareProvider; use Alchemy\Phrasea\Core\Middleware\SetupMiddlewareProvider;
class WebBaseApplicationLoader extends BaseApplicationLoader class WebApplicationLoader extends BaseApplicationLoader
{ {
protected function doPrePluginServiceRegistration(Application $app) protected function doPrePluginServiceRegistration(Application $app)
{ {