Last change
on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago |
Upload project files
|
-
Property mode
set to
100644
|
File size:
396 bytes
|
Rev | Line | |
---|
[e3d4e0a] | 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 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.