get = $get; $this->post = $post; $this->server = $server; $this->cookie = $cookie; $this->request = $request; } /** * @return array */ public function get_request() { return $this->request; } /** * @return array */ public function get_get() { return $this->get; } /** * @return array */ public function get_post() { return $this->post; } /** * @return array */ public function get_server() { return $this->server; } /** * @return array */ public function get_cookie() { return $this->cookie; } }