Files
SkinbaseNova/.deploy/artwork-evolution-release/app/Services/Sitemaps/ShardableSitemapBuilder.php
2026-04-18 17:02:56 +02:00

21 lines
407 B
PHP

<?php
declare(strict_types=1);
namespace App\Services\Sitemaps;
use DateTimeInterface;
interface ShardableSitemapBuilder extends SitemapBuilder
{
public function totalItems(): int;
public function shardSize(): int;
/**
* @return list<SitemapUrl>
*/
public function itemsForShard(int $shard): array;
public function lastModifiedForShard(int $shard): ?DateTimeInterface;
}