. */ /* */ /*************************************************************************************/ namespace Thelia\Module; use Symfony\Component\EventDispatcher\EventDispatcherInterface; use Symfony\Component\HttpFoundation\Request; interface BaseModuleInterface { public function setRequest(Request $request); public function getRequest(); public function setDispatcher(EventDispatcherInterface $dispatcher); public function getDispatcher(); }