49dd055a58
Type checking / changes (push) Has been cancelled
Type checking / test (push) Has been cancelled
Type checking / typescript-summary (push) Has been cancelled
Node tests / changes (push) Has been cancelled
Node tests / test (push) Has been cancelled
Node tests / test-summary (push) Has been cancelled
Теперь master f7_talk = ПОЛНЫЙ деплой-артефакт: built js (наша сборка) + lib/Vendor (серверные PHP-deps) + патч Listener + version 22.0.12.1. Готов к брендингу dev-f7 и подписи dev-appstore. Апстрим-подписи (appinfo/signature.json) в репо нет — переподпишет dev-appstore при публикации.
21 lines
412 B
PHP
21 lines
412 B
PHP
<?php
|
|
namespace OCA\Talk\Vendor\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;
|
|
}
|