for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Zenstruck\JWT\Validator;
use Zenstruck\JWT\Token;
/**
* @author Kevin Bond <[email protected]>
*/
final class IssuedAtValidator extends ExpectedClaimValidator
{
* @param mixed $expected
public function __construct($expected)
parent::__construct(Token::CLAIM_IAT, $expected);
}