Current path: home/webdevt/www/demo2/wp-content/plugins/google-site-kit/third-party/firebase/php-jwt/src/
?? Go up: /home/webdevt/www/demo2/wp-content/plugins/google-site-kit/third-party/firebase/php-jwt
<?php
namespace Google\Site_Kit_Dependencies\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;
}