mirror of
https://github.com/retailcrm/transparent-email.git
synced 2025-02-18 07:43:13 +03:00
13 lines
224 B
PHP
13 lines
224 B
PHP
|
<?php
|
||
|
|
||
|
namespace bkrukowski\Gordianus\Services;
|
||
|
|
||
|
/**
|
||
|
* @internal
|
||
|
*/
|
||
|
interface ServiceInterface
|
||
|
{
|
||
|
public function isDomainSupported(string $domain) : bool;
|
||
|
|
||
|
public function getPrimaryEmail(string $email) : string;
|
||
|
}
|