success = true; $this->config = $config; } public function get($key) { $r = $this->config[$key] ?? null; if ($r === null) return null; return $r; } public function getAll() { return $this->config; } }