Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class User extends Contact |
||
13 | { |
||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | private $email; |
||
18 | |||
19 | public function __construct(string $name, string $email) |
||
20 | { |
||
21 | parent::__construct($name); |
||
22 | $this->email = $email; |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @Field(name="email") |
||
27 | * @return string |
||
28 | */ |
||
29 | public function getEmail(): string |
||
32 | } |
||
33 | } |
||
34 |