transparent-email/src/Services/ServiceInterface.php

13 lines
231 B
PHP
Raw Normal View History

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