13 lines
235 B
PHP
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;
|
|
}
|