Files
kupshop/bundles/KupShop/ComponentsBundle/Interfaces/GTMComponentViewInterface.php
2025-08-02 16:30:27 +02:00

15 lines
314 B
PHP

<?php
declare(strict_types=1);
namespace KupShop\ComponentsBundle\Interfaces;
use KupShop\ComponentsBundle\Twig\BaseComponent;
interface GTMComponentViewInterface
{
public function getPushData(BaseComponent $component): ?object;
public function getPageTypeString(BaseComponent $component): ?string;
}