``` public function getConfig(string $scene): array { if ($scene === 'default') { return $this->config->get($this->getConfigKey()); } return Arr::merge( $this->config->get($this->getConfigKey()), $this->config->get($this->getConfigKey($scene)) ); } ``` 这样才对吧?
这样才对吧?