annotations = $value; return $this; } public function __construct(array $value = []) { if (isset($value['annotations'])) { $this->annotations = $value['annotations']; unset($value['annotations']); } if ([] !== $value) { throw new InvalidConfigurationException(sprintf('The following keys are not supported by "%s": ', __CLASS__).implode(', ', array_keys($value))); } } public function toArray(): array { $output = []; if (null !== $this->annotations) { $output['annotations'] = $this->annotations; } return $output; } }