| @@ 775-783 (lines=9) @@ | ||
| 772 | * |
|
| 773 | * @return bool|Parameter|null |
|
| 774 | */ |
|
| 775 | public function getAdditionalProperties() |
|
| 776 | { |
|
| 777 | if (is_array($this->additionalProperties)) { |
|
| 778 | $this->additionalProperties = new static($this->additionalProperties, $this->serviceDescription); |
|
| 779 | $this->additionalProperties->setParent($this); |
|
| 780 | } |
|
| 781 | ||
| 782 | return $this->additionalProperties; |
|
| 783 | } |
|
| 784 | ||
| 785 | /** |
|
| 786 | * Set the additionalProperties value of the parameter |
|
| @@ 820-828 (lines=9) @@ | ||
| 817 | * |
|
| 818 | * @return Parameter|null |
|
| 819 | */ |
|
| 820 | public function getItems() |
|
| 821 | { |
|
| 822 | if (is_array($this->items)) { |
|
| 823 | $this->items = new static($this->items, $this->serviceDescription); |
|
| 824 | $this->items->setParent($this); |
|
| 825 | } |
|
| 826 | ||
| 827 | return $this->items; |
|
| 828 | } |
|
| 829 | ||
| 830 | /** |
|
| 831 | * Get the class that the parameter must implement |
|