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

13 lines
235 B
PHP

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