Files
kupshop/bundles/KupShop/GTMBundle/Ecommerce/PromotionImpression.php
2025-08-02 16:30:27 +02:00

18 lines
330 B
PHP

<?php
namespace KupShop\GTMBundle\Ecommerce;
class PromotionImpression extends PromotionAbstractEvent
{
/**
* Specific PageData.
*
* @throws \Exception
*/
public function getData(&$dataContainer)
{
$dataContainer->event = 'promotionView';
parent::getData($dataContainer);
}
}