18 lines
402 B
PHP
18 lines
402 B
PHP
<?php
|
|
|
|
namespace Lexik\Bundle\JWTAuthenticationBundle\Security\User;
|
|
|
|
use Symfony\Component\Security\Core\User\UserInterface;
|
|
|
|
interface JWTUserInterface extends UserInterface
|
|
{
|
|
/**
|
|
* Creates a new instance from a given JWT payload.
|
|
*
|
|
* @param string $username
|
|
*
|
|
* @return JWTUserInterface
|
|
*/
|
|
public static function createFromPayload($username, array $payload);
|
|
}
|