Total Complexity | 4 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class Link |
||
10 | { |
||
11 | use HasMeta; |
||
12 | |||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $href; |
||
17 | |||
18 | 148 | public function __construct(string $href, ?Meta $meta = null) |
|
22 | 74 | } |
|
23 | |||
24 | 44 | public function getHref(): string |
|
27 | } |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | * |
||
32 | * @return array |
||
33 | */ |
||
34 | 40 | public function toArray() |
|
47 |