Skip to content

Commit

Permalink
fix kf wording char type
Browse files Browse the repository at this point in the history
  • Loading branch information
DoveChen committed Oct 11, 2021
1 parent e2b5857 commit 7da60dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Work.php
Original file line number Diff line number Diff line change
Expand Up @@ -1638,7 +1638,7 @@ public function kfCustomerUpgradeServiceForMember (string $open_kfid, string $ex
Utils::checkNotEmptyStr($open_kfid, 'open_kfid');
Utils::checkNotEmptyStr($external_userid, 'external_userid');
Utils::checkNotEmptyStr($userid, 'userid');
Utils::checkNotEmptyArray($wording, 'wording');
Utils::checkNotEmptyStr($wording, 'wording');
$args = [
'open_kfid' => $open_kfid,
'external_userid' => $external_userid,
Expand Down Expand Up @@ -1676,7 +1676,7 @@ public function kfCustomerUpgradeServiceForChat (string $open_kfid, string $exte
Utils::checkNotEmptyStr($open_kfid, 'open_kfid');
Utils::checkNotEmptyStr($external_userid, 'external_userid');
Utils::checkNotEmptyStr($chat_id, 'chat_id');
Utils::checkNotEmptyArray($wording, 'wording');
Utils::checkNotEmptyStr($wording, 'wording');
$args = [
'open_kfid' => $open_kfid,
'external_userid' => $external_userid,
Expand Down

0 comments on commit 7da60dc

Please sign in to comment.