N°5809 Update firebase/php-jwt from 6.4.0 to 6.10.0

This commit is contained in:
Pierre Goiffon
2024-01-25 17:23:14 +01:00
parent 71d9710322
commit fde01d5004
15 changed files with 342 additions and 74 deletions

View File

@@ -2,6 +2,17 @@
namespace Firebase\JWT;
class BeforeValidException extends \UnexpectedValueException
class BeforeValidException extends \UnexpectedValueException implements JWTExceptionWithPayloadInterface
{
private object $payload;
public function setPayload(object $payload): void
{
$this->payload = $payload;
}
public function getPayload(): object
{
return $this->payload;
}
}