PluginProbe ʕ •ᴥ•ʔ
AI Agent by SiteGround / 1.1.7
AI Agent by SiteGround v1.1.7
1.2.2 1.2.1 1.2.0 1.1.9 1.1.8 1.1.7 1.1.6 1.1.5 1.1.4 trunk 1.1.3
sg-ai-studio / vendor / firebase / php-jwt / src / JWTExceptionWithPayloadInterface.php
sg-ai-studio / vendor / firebase / php-jwt / src Last commit date
BeforeValidException.php 4 weeks ago CachedKeySet.php 4 weeks ago ExpiredException.php 4 weeks ago JWK.php 4 weeks ago JWT.php 4 weeks ago JWTExceptionWithPayloadInterface.php 4 weeks ago Key.php 4 weeks ago SignatureInvalidException.php 4 weeks ago
JWTExceptionWithPayloadInterface.php
21 lines
1 <?php
2 namespace Firebase\JWT;
3
4 interface JWTExceptionWithPayloadInterface
5 {
6 /**
7 * Get the payload that caused this exception.
8 *
9 * @return object
10 */
11 public function getPayload(): object;
12
13 /**
14 * Get the payload that caused this exception.
15 *
16 * @param object $payload
17 * @return void
18 */
19 public function setPayload(object $payload): void;
20 }
21