chore: fix tests

This commit is contained in:
Christy Jacob 2025-01-17 11:16:21 +05:30
parent f66f75b808
commit 455bc3370c

View file

@ -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.
*