first commit
This commit is contained in:
12
libraries/vendor/lcobucci/jwt/src/Validation/Constraint.php
vendored
Normal file
12
libraries/vendor/lcobucci/jwt/src/Validation/Constraint.php
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Lcobucci\JWT\Validation;
|
||||
|
||||
use Lcobucci\JWT\Token;
|
||||
|
||||
interface Constraint
|
||||
{
|
||||
/** @throws ConstraintViolation */
|
||||
public function assert(Token $token): void;
|
||||
}
|
||||
Reference in New Issue
Block a user