1 | <?php |
||
7 | class Email implements Targetable |
||
8 | { |
||
9 | /** |
||
10 | * Recipient email. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | private $email; |
||
15 | |||
16 | /** |
||
17 | * Set recipient email. |
||
18 | * |
||
19 | * @param string $email |
||
20 | */ |
||
21 | 2 | public function __construct($email) |
|
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | 1 | public function getTarget() |
|
37 | } |
||
38 |