proxy = $proxy; $this->backend = $backend; $this->smaers = $smaers; } public function getProxy() { return $this->proxy; } public function getBackend() { return $this->backend; } public function getSmaers() { return $this->smaers; } public function __toString() { return __CLASS__ . " [proxy: " . $this->proxy . ", backend:" . $this->backend . ", smaers: " . $this->smaers . "]"; } }