| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class TitleLink |
||
| 11 | { |
||
| 12 | private string $title; |
||
| 13 | private string $link; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * TitleLink constructor. |
||
| 17 | */ |
||
| 18 | public function __construct(string $title, string $link) |
||
| 19 | { |
||
| 20 | $this->title = $title; |
||
| 21 | $this->link = $link; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function getTitle(): string |
||
| 25 | { |
||
| 26 | return $this->title; |
||
| 27 | } |
||
| 28 | |||
| 29 | public function getLink(): string |
||
| 32 | } |
||
| 33 | } |
||
| 34 |