15 lines
245 B
PHP
15 lines
245 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Lcobucci\JWT;
|
||
|
|
||
|
interface ClaimsFormatter
|
||
|
{
|
||
|
/**
|
||
|
* @param array<string, mixed> $claims
|
||
|
*
|
||
|
* @return array<string, mixed>
|
||
|
*/
|
||
|
public function formatClaims(array $claims): array;
|
||
|
}
|