Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Sender extends BaseEntity |
||
12 | { |
||
13 | /** |
||
14 | * The name of the user who do the push |
||
15 | * @var string |
||
16 | */ |
||
17 | protected string $login = ''; |
||
18 | |||
19 | /** |
||
20 | * The HTML URL of the user profile |
||
21 | * @var string |
||
22 | */ |
||
23 | protected string $htmlUrl = ''; |
||
24 | |||
25 | /** |
||
26 | * |
||
27 | * @return string |
||
28 | */ |
||
29 | public function getLogin(): string |
||
30 | { |
||
31 | return $this->login; |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * |
||
36 | * @return string |
||
37 | */ |
||
38 | public function getHtmlUrl(): string |
||
41 | } |
||
42 | } |
||
43 |