| 1 | <?php |
||
| 8 | class Link |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @param $href |
||
| 12 | */ |
||
| 13 | 8 | public function __construct($href) |
|
| 17 | |||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | * |
||
| 21 | * @Expose() |
||
| 22 | * @Type("string") |
||
| 23 | */ |
||
| 24 | protected $href; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | public function getHref() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param string $href |
||
| 36 | * @return $this |
||
| 37 | */ |
||
| 38 | public function setHref($href) |
||
| 44 | } |
||
| 45 |