Code Duplication    Length = 9-9 lines in 2 locations

src/User/Tag.php 2 locations

@@ 137-145 (lines=9) @@
134
     *
135
     * @return bool
136
     */
137
    public function batchTagUsers(array $openIds, $tagId)
138
    {
139
        $params = [
140
                   'openid_list' => $openIds,
141
                   'tagid' => $tagId,
142
                  ];
143
144
        return $this->parseJSON('json', [self::API_MEMBER_BATCH_TAG, $params]);
145
    }
146
147
    /**
148
     * Untag users from a tag.
@@ 155-163 (lines=9) @@
152
     *
153
     * @return bool
154
     */
155
    public function batchUntagUsers(array $openIds, $tagId)
156
    {
157
        $params = [
158
                   'openid_list' => $openIds,
159
                   'tagid' => $tagId,
160
                  ];
161
162
        return $this->parseJSON('json', [self::API_MEMBER_BATCH_UNTAG, $params]);
163
    }
164
}
165