for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yokai\SecurityTokenBundle\Event;
use Symfony\Component\EventDispatcher\Event;
/**
* @author Yann Eugoné <[email protected]>
*/
class TokenNotFoundEvent extends Event
{
* @var string
private $purpose;
private $value;
* @param string $purpose
* @param string $value
public function __construct($purpose, $value)
$this->purpose = $purpose;
$this->value = $value;
}
* @return string
public function getPurpose()
return $this->purpose;
public function getValue()
return $this->value;