* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) * International Registered Trademark & Property of PrestaShop SA */ namespace PrestaShop\Module\Ps_Googleanalytics\Hooks; use Context; use Ps_Googleanalytics; interface HookInterface { /** * @param Ps_Googleanalytics $module * @param Context $context */ public function __construct(Ps_Googleanalytics $module, Context $context); public function run(); }