| 1 | <?php |
||
| 9 | final class TagBuilder implements Objects\TagFactory |
||
| 10 | { |
||
| 11 | use Properties\OptionalExtensions; |
||
| 12 | |||
| 13 | private $description; |
||
| 14 | |||
| 15 | private $externalDocs; |
||
| 16 | |||
| 17 | private $name; |
||
| 18 | |||
| 19 | 4 | public function createTag(): Objects\Tag |
|
| 28 | |||
| 29 | 1 | public function setDescription(string $description): self |
|
| 35 | |||
| 36 | 1 | public function setExternalDocs(Objects\ExternalDocumentationFactory $externalDocs): self |
|
| 42 | |||
| 43 | 4 | public function setName(string $name): self |
|
| 49 | |||
| 50 | 4 | private function getDescription(): ?string |
|
| 54 | |||
| 55 | 4 | private function getExternalDocs(): ?Objects\ExternalDocumentationFactory |
|
| 59 | |||
| 60 | 4 | private function getName(): string |
|
| 64 | } |
||
| 65 |