| 1 | <?php |
||
| 17 | class NotBeforeChecker implements ClaimCheckerInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var int |
||
| 21 | */ |
||
| 22 | private $tolerance; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param int $tolerance |
||
| 26 | */ |
||
| 27 | public function __construct($tolerance = 0) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | public function checkClaim(JWTInterface $jwt) |
||
| 47 | } |
||
| 48 |