From 6b0973a7ec28a9d2cf65aebcf96d36c084a6050c Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Thu, 7 Nov 2013 16:53:49 +0100 Subject: [PATCH] change request class in BaseModule --- core/lib/Thelia/Module/BaseModule.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/lib/Thelia/Module/BaseModule.php b/core/lib/Thelia/Module/BaseModule.php index 5a6aa103f..4575f5aac 100755 --- a/core/lib/Thelia/Module/BaseModule.php +++ b/core/lib/Thelia/Module/BaseModule.php @@ -27,6 +27,8 @@ namespace Thelia\Module; use Propel\Runtime\Connection\ConnectionInterface; use Propel\Runtime\Propel; use Symfony\Component\DependencyInjection\ContainerAware; +use Symfony\Component\EventDispatcher\EventDispatcherInterface; +use Symfony\Component\HttpFoundation\Request; use Thelia\Model\Map\ModuleTableMap; use Thelia\Model\ModuleI18nQuery; use Thelia\Model\Map\ModuleImageTableMap; @@ -36,7 +38,7 @@ use Thelia\Exception\ModuleException; use Thelia\Model\Module; use Thelia\Model\ModuleImage; use Thelia\Model\ModuleQuery; -use Thelia\Core\HttpFoundation\Request; + class BaseModule extends ContainerAware implements BaseModuleInterface {