Files
backend/src/Service/DecoderJWT/Interfaces/JWTDecoderServiceInterface.php
T
2026-05-27 19:36:32 +03:00

10 lines
153 B
PHP

<?php
namespace App\Service\DecoderJWT\Interfaces;
use App\Entity\User;
interface JWTDecoderServiceInterface
{
public function getUser(): ?User;
}