1 | <?php |
||
10 | final class Server extends ValueObject |
||
11 | { |
||
12 | use Properties\OptionalDescription; |
||
13 | use Properties\OptionalExtensions; |
||
14 | |||
15 | private $url; |
||
16 | |||
17 | private $variables; |
||
18 | |||
19 | 8 | public function __construct( |
|
30 | |||
31 | 8 | public function getUrl(): string |
|
35 | |||
36 | 1 | public function getVariables(): ServerVariables |
|
40 | |||
41 | 8 | public function hasVariables(): bool |
|
45 | |||
46 | 8 | public function jsonSerialize(): ?array |
|
50 | |||
51 | 8 | protected function normalizeOptionalProperties(): array |
|
58 | |||
59 | 8 | protected function normalizeRequiredProperties(): array |
|
65 | } |
||
66 |