zzwy2/vendor/lcobucci/jwt/src/Validation/Constraint.php

13 lines
205 B
PHP
Raw Normal View History

2022-10-08 17:31:39 +08:00
<?php
declare(strict_types=1);
namespace Lcobucci\JWT\Validation;
use Lcobucci\JWT\Token;
interface Constraint
{
/** @throws ConstraintViolation */
public function assert(Token $token): void;
}