15 lines
314 B
PHP
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;
|
|
}
|