Files
kupshop/bundles/KupShop/ContentBundle/Sitemap/SitemapInterface.php
2025-08-02 16:30:27 +02:00

13 lines
207 B
PHP

<?php
namespace KupShop\ContentBundle\Sitemap;
interface SitemapInterface
{
public function getData(): \Generator;
public function render(): void;
public static function isAllowed(): bool;
}