Files
shlink/module/Core/src/Crawling/CrawlingHelperInterface.php
2022-10-12 18:23:36 +02:00

14 lines
218 B
PHP

<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\Core\Crawling;
interface CrawlingHelperInterface
{
/**
* @return iterable<string>
*/
public function listCrawlableShortCodes(): iterable;
}