transparent-email/src/Services/ServiceInterface.php

13 lines
224 B
PHP
Raw Normal View History

2016-09-10 00:41:21 +02:00
<?php
namespace bkrukowski\Gordianus\Services;
/**
* @internal
*/
interface ServiceInterface
{
public function isDomainSupported(string $domain) : bool;
public function getPrimaryEmail(string $email) : string;
}