| 1 | <?php  | 
            ||
| 10 | class IsDomainEqual implements MatchInterface  | 
            ||
| 11 | { | 
            ||
| 12 | /**  | 
            ||
| 13 | * @var string  | 
            ||
| 14 | */  | 
            ||
| 15 | private $domain;  | 
            ||
| 16 | |||
| 17 | /**  | 
            ||
| 18 | * @param string $domain  | 
            ||
| 19 | */  | 
            ||
| 20 | 1 | public function __construct($domain)  | 
            |
| 24 | |||
| 25 | /**  | 
            ||
| 26 | * @return string  | 
            ||
| 27 | */  | 
            ||
| 28 | 1 | public function getDomain()  | 
            |
| 32 | |||
| 33 | /**  | 
            ||
| 34 | * @param string $email  | 
            ||
| 35 | * @return boolean  | 
            ||
| 36 | */  | 
            ||
| 37 | 1 | public function execute($email)  | 
            |
| 43 | }  | 
            ||
| 44 |