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

@@ -0,0 +1,20 @@
<?php
namespace Firebase\JWT;
interface JWTExceptionWithPayloadInterface
{
/**
* Get the payload that caused this exception.
*
* @return object
*/
public function getPayload(): object;
/**
* Get the payload that caused this exception.
*
* @param object $payload
* @return void
*/
public function setPayload(object $payload): void;
}