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