connection->requestAndParse( 'GET', 'tag', [ 'query' => $this->getQuery() ] ); } /** * @throws BaseException|GuzzleException */ public function get(string $tagId): TagEntity { $data = $this->connection->requestAndParse( 'GET', 'tag/'.urlencode(trim($tagId)), [ RequestOptions::QUERY => $this->getQuery() ] ); return new TagEntity($data); } }