mirror of
https://github.com/shlinkio/shlink.git
synced 2026-02-28 12:13:13 +08:00
17 lines
309 B
PHP
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;
|
|
}
|