Files
mycomments-api/vendor/lexik/jwt-authentication-bundle/Services/PayloadEnrichmentInterface.php
T

11 lines
235 B
PHP

<?php
namespace Lexik\Bundle\JWTAuthenticationBundle\Services;
use Symfony\Component\Security\Core\User\UserInterface;
interface PayloadEnrichmentInterface
{
public function enrich(UserInterface $user, array &$payload): void;
}