File "BeforeValidException.php"
Full Path: /var/www/laravel_filter/vendor/firebase/php-jwt/src/BeforeValidException.php
File size: 357 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Firebase\JWT;
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;
}
}