transparent-email/src/Services/ServiceInterface.php
2016-09-10 15:13:55 +02:00

13 lines
231 B
PHP

<?php
namespace bkrukowski\TransparentEmail\Services;
/**
* @internal
*/
interface ServiceInterface
{
public function isDomainSupported(string $domain) : bool;
public function getPrimaryEmail(string $email) : string;
}