Skip to content

Commit 39a0173

Browse files
committed
support app_auth_token
1 parent 30595f4 commit 39a0173

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/Requests/AbstractAopRequest.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,26 @@ public function setVersion($value)
483483
}
484484

485485

486+
/**
487+
* @return mixed
488+
*/
489+
public function getAppAuthToken()
490+
{
491+
return $this->getParameter('app_auth_token');
492+
}
493+
494+
495+
/**
496+
* @param $value
497+
*
498+
* @return $this
499+
*/
500+
public function setAppAuthToken($value)
501+
{
502+
return $this->setParameter('app_auth_token', $value);
503+
}
504+
505+
486506
public function validateBizContent()
487507
{
488508
$data = $this->getBizContent();

0 commit comments

Comments
 (0)