site_url = $site_url; $this->wpml_client_id = $wpml_client_id; $this->site_key = $site_key; } /** * @return string */ public function get_site_url() { return $this->site_url; } /** * @return int */ public function get_wpml_client_id() { return $this->wpml_client_id; } /** * @return string */ public function get_site_key() { return $this->site_key; } /** * @return array */ public function to_array() { return array( 'site_url' => $this->get_site_url(), 'wpml_client_id' => $this->get_wpml_client_id(), 'site_key' => $this->get_site_key(), ); } }