Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class Footer |
||
15 | { |
||
16 | use IconTrait; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $text; |
||
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | public function getText(): string |
||
27 | { |
||
28 | return $this->text; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @param string $text |
||
33 | * |
||
34 | * @return self |
||
35 | */ |
||
36 | public function setText(string $text): self |
||
41 | } |
||
42 | } |
||
43 |