LaLiga-BackEnd/vendor/lexik/jwt-authentication-bundle/Event/JWTEncodedEvent.php

21 lines
356 B
PHP

<?php
namespace Lexik\Bundle\JWTAuthenticationBundle\Event;
use Symfony\Contracts\EventDispatcher\Event;
class JWTEncodedEvent extends Event
{
private $jwtString;
public function __construct(string $jwtString)
{
$this->jwtString = $jwtString;
}
public function getJWTString()
{
return $this->jwtString;
}
}