| 1 | <?php declare(strict_types=1); |
||
| 5 | final class Url implements UrlInterface |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | private $url; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Url constructor. |
||
| 14 | * @param string $url |
||
| 15 | */ |
||
| 16 | public function __construct($url) |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return string |
||
| 23 | */ |
||
| 24 | public function getUrl(): string |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | public function __toString(): string |
||
| 36 | } |
||
| 37 |