| 1 | <?php |
||
| 20 | class UserOfEmailQuery |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * The user email. |
||
| 24 | * |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private $email; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Constructor. |
||
| 31 | * |
||
| 32 | * @param string $anEmail The user email |
||
| 33 | */ |
||
| 34 | public function __construct($anEmail) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Gets the email. |
||
| 41 | * |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | public function email() |
||
| 48 | } |
||
| 49 |