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;
}