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

60 lines
948 B
PHP

<?php
namespace Lexik\Bundle\JWTAuthenticationBundle\Event;
use Symfony\Contracts\EventDispatcher\Event;
/**
* JWTDecodedEvent.
*
* @author Nicolas Cabot <n.cabot@lexik.fr>
*/
class JWTDecodedEvent extends Event
{
/**
* @var array
*/
protected $payload;
/**
* @var bool
*/
protected $isValid;
public function __construct(array $payload)
{
$this->payload = $payload;
$this->isValid = true;
}
/**
* @return array
*/
public function getPayload()
{
return $this->payload;
}
public function setPayload(array $payload)
{
$this->payload = $payload;
}
/**
* Mark payload as invalid.
*/
public function markAsInvalid()
{
$this->isValid = false;
$this->stopPropagation();
}
/**
* @return bool
*/
public function isValid()
{
return $this->isValid;
}
}