We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 6 |
Total Lines | 63 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class Mail extends \TYPO3\CMS\Extbase\DomainObject\AbstractValueObject |
||
16 | { |
||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $mail; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $name; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | protected $label; |
||
31 | |||
32 | /** |
||
33 | * @return string |
||
34 | */ |
||
35 | public function getMail(): string |
||
36 | { |
||
37 | return $this->mail; |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * @param string $mail |
||
42 | */ |
||
43 | public function setMail(string $mail): void |
||
44 | { |
||
45 | $this->mail = $mail; |
||
46 | } |
||
47 | |||
48 | /** |
||
49 | * @return string |
||
50 | */ |
||
51 | public function getName(): string |
||
52 | { |
||
53 | return $this->name; |
||
54 | } |
||
55 | |||
56 | /** |
||
57 | * @param string $name |
||
58 | */ |
||
59 | public function setName(string $name): void |
||
62 | } |
||
63 | |||
64 | /** |
||
65 | * @return string |
||
66 | */ |
||
67 | public function getLabel(): string |
||
68 | { |
||
69 | return $this->label; |
||
70 | } |
||
71 | |||
72 | /** |
||
73 | * @param string $label |
||
74 | */ |
||
75 | public function setLabel(string $label): void |
||
78 | } |
||
79 | |||
80 | } |