1 | <?php |
||
9 | final class DiscriminatorBuilder implements Objects\DiscriminatorFactory |
||
10 | { |
||
11 | private $mapping = []; |
||
12 | |||
13 | private $propertyName; |
||
14 | |||
15 | public function createDiscriminator(): Objects\Discriminator |
||
22 | |||
23 | public function setMapping(array $mapping): self |
||
29 | |||
30 | public function setPropertyName(string $propertyName): self |
||
36 | |||
37 | private function getMapping(): array |
||
41 | |||
42 | private function getPropertyName(): ?string |
||
46 | } |
||
47 |