BeforeValidException.php
1 month ago
CachedKeySet.php
1 month ago
ExpiredException.php
1 month ago
JWK.php
1 month ago
JWT.php
1 month ago
JWTExceptionWithPayloadInterface.php
1 month ago
Key.php
1 month ago
SignatureInvalidException.php
1 year ago
BeforeValidException.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Google\Site_Kit_Dependencies\Firebase\JWT; |
| 4 | |
| 5 | class BeforeValidException extends \UnexpectedValueException implements JWTExceptionWithPayloadInterface |
| 6 | { |
| 7 | private object $payload; |
| 8 | public function setPayload(object $payload): void |
| 9 | { |
| 10 | $this->payload = $payload; |
| 11 | } |
| 12 | public function getPayload(): object |
| 13 | { |
| 14 | return $this->payload; |
| 15 | } |
| 16 | } |
| 17 |