transparent-email/src/Services/ServiceInterface.php

13 lines
231 B
PHP
Raw Normal View History

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