BuLi-Tipp Login hinzugefügt und Rangliste angefangen

This commit is contained in:
R40fendt
2025-07-03 21:43:39 +02:00
parent db064b36c0
commit a546ede562
30 changed files with 3483 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace 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;
}