| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class WebpageDTO implements WebpageDTOInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | private $html; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * WebpageDTO constructor. |
||
| 24 | * @param string $html |
||
| 25 | */ |
||
| 26 | 22 | public function __construct(string $html) |
|
| 27 | { |
||
| 28 | 22 | $this->html = $html; |
|
| 29 | 22 | } |
|
| 30 | |||
| 31 | /** |
||
| 32 | * @return string |
||
| 33 | */ |
||
| 34 | 19 | public function getHtml(): string |
|
| 37 | } |
||
| 38 | } |
||
| 39 |