Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 66.67% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class Domain extends AbstractEntity implements JsonSerializable |
||
11 | { |
||
12 | private string $authority; |
||
13 | |||
14 | 2 | public function __construct(string $authority) |
|
15 | { |
||
16 | 2 | $this->authority = $authority; |
|
17 | } |
||
18 | |||
19 | 4 | public function getAuthority(): string |
|
22 | } |
||
23 | |||
24 | public function jsonSerialize(): string |
||
29 |