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