Skip to content

Commit

Permalink
update laravel-esign
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsir committed Jul 18, 2020
1 parent a63e453 commit a22e885
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Identity/Identity.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ class Identity extends AbstractAPI
/**
* @param string $orgId 机构 id
* @param string $agentAccountId 办理人账号Id
* @param string $contextId 发起方业务上下文标识
* @param string $notifyUrl 发起方接收实名认证状态变更通知的地址
* @param string $redirectUrl 实名结束后页面跳转地址
* @param string $contextId 发起方业务上下文标识
* @param string $authType 指定默认认证类型
* @param bool $repeatIdentity 是否允许重复实名,默认允许
* @param bool $showResultPage 实名完成是否显示结果页,默认显示
Expand All @@ -30,7 +30,7 @@ class Identity extends AbstractAPI
*
* @throws HttpException
*/
public function getOrgIdentityUrl($orgId, $agentAccountId, $contextId = '', $notifyUrl = '', $redirectUrl = '', $authType = '', $repeatIdentity = true, $showResultPage = true)
public function getOrgIdentityUrl($orgId, $agentAccountId, $notifyUrl = '', $redirectUrl = '', $contextId = '', $authType = '', $repeatIdentity = true, $showResultPage = true)
{
$url = sprintf('/v2/identity/auth/web/%s/orgIdentityUrl', $orgId);
$params = [
Expand All @@ -43,7 +43,6 @@ public function getOrgIdentityUrl($orgId, $agentAccountId, $contextId = '', $not
'redirectUrl' => $redirectUrl,
'showResultPage' => $showResultPage,
],
'orgEntity' => [],
];

return $this->parseJSON('json', [$url, $params]);
Expand Down

0 comments on commit a22e885

Please sign in to comment.