Created rest endpoint to list existing domains

This commit is contained in:
Alejandro Celaya
2020-09-27 09:53:12 +02:00
parent 8109ceb7eb
commit 76d6d9a7a9
11 changed files with 239 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\Core\Domain;
use Shlinkio\Shlink\Core\Entity\Domain;
interface DomainServiceInterface
{
/**
* @return Domain[]
*/
public function listDomainsWithout(?string $excludeDomain = null): array;
}