1 | <?php |
||
9 | class Invitation implements TenantAwareInterface, InvitationInterface |
||
10 | { |
||
11 | |||
12 | use TenantTrait; |
||
13 | |||
14 | /** |
||
15 | * @var integer |
||
16 | */ |
||
17 | protected $id; |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $email; |
||
22 | |||
23 | /** |
||
24 | * @return int |
||
25 | */ |
||
26 | public function getId() |
||
30 | |||
31 | /** |
||
32 | * @return string |
||
33 | */ |
||
34 | public function getEmail() |
||
38 | |||
39 | /** |
||
40 | * @param string $email |
||
41 | * |
||
42 | * @return $this |
||
43 | */ |
||
44 | public function setEmail($email) |
||
50 | |||
51 | /** |
||
52 | * @return string |
||
53 | */ |
||
54 | public function __toString() |
||
58 | } |
||
59 |