1 | <?php |
||
9 | final class ExternalDocumentationBuilder implements Objects\ExternalDocumentationFactory |
||
10 | { |
||
11 | use Properties\OptionalExtensions; |
||
12 | |||
13 | private $description; |
||
14 | |||
15 | private $url; |
||
16 | |||
17 | 5 | public function createExternalDocumentation(): Objects\ExternalDocumentation |
|
25 | |||
26 | 1 | public function setDescription(string $description): self |
|
32 | |||
33 | 5 | public function setUrl(string $url): self |
|
39 | |||
40 | 5 | private function getDescription(): ?string |
|
44 | |||
45 | 5 | private function getUrl(): string |
|
49 | } |
||
50 |