mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 00:49:02 +00:00
chore: fix tests
This commit is contained in:
parent
f66f75b808
commit
455bc3370c
1 changed files with 12 additions and 0 deletions
|
|
@ -181,6 +181,18 @@ class Func extends Event
|
|||
return $this->jwt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets JWT for the function event.
|
||||
*
|
||||
* @param string $jwt
|
||||
* @return self
|
||||
*/
|
||||
public function setJWT(string $jwt): self
|
||||
{
|
||||
$this->jwt = $jwt;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prepare payload for the function event.
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in a new issue