File "JWTExceptionWithPayloadInterface.php"
Full Path: /var/www/html/back/vendor/firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php
File size: 396 bytes
MIME-type: text/x-php
Charset: utf-8
<?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;
}