options[$key] = $value; } public function getOptions(): array { return $this->options; } public function getOption(string $key): ?string { if (\array_key_exists($key, $this->options)) { return $this->options[$key]; } return null; } }