Files
shlink/module/Core/src/Domain/DomainServiceInterface.php
2021-01-04 15:55:59 +01:00

17 lines
309 B
PHP

<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\Core\Domain;
use Shlinkio\Shlink\Core\Domain\Model\DomainItem;
use Shlinkio\Shlink\Rest\Entity\ApiKey;
interface DomainServiceInterface
{
/**
* @return DomainItem[]
*/
public function listDomains(?ApiKey $apiKey = null): array;
}