shlink/module/Core/src/Crawling/CrawlingHelperInterface.php
2021-05-22 07:15:34 +02:00

13 lines
219 B
PHP

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