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