data = $data; } /** * @inheritDoc */ public function getConfigValue(string $key, $default = null) { if (array_key_exists($key, $this->data)) { return $this->data[$key]; } return $default; } /** * @inheritDoc */ public function getValues(): array { return $this->data; } }