19 lines
388 B
PHP
19 lines
388 B
PHP
<?php
|
|
|
|
namespace Lexik\Bundle\JWTAuthenticationBundle\Security\Authentication\Token;
|
|
|
|
use Symfony\Component\Security\Guard\Token\GuardTokenInterface;
|
|
|
|
interface PreAuthenticationJWTUserTokenInterface extends GuardTokenInterface
|
|
{
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function setPayload(array $payload);
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getPayload();
|
|
}
|