name = $name; $this->address = $address; $this->vars = $vars; $this->subscribed = $subscribed; } /** * @return string */ public function getName() { return $this->name; } /** * @return string */ public function getAddress() { return $this->address; } /** * @return array */ public function getVars() { return $this->vars; } /** * @return bool */ public function isSubscribed() { return $this->subscribed; } }