Get a configuration setting or all of the configuration settings
bool|string $key Configuration value to retrieve. Set to FALSE to retrieve all values of the client.: The object return can be modified, and modifications will affect the client's config.
mixed|Collection
Overrides ClientInterface::getConfig
public final function getConfig($key = false) {
return $key ? $this->config
->get($key) : $this->config;
}