D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
usr
/
local
/
psa
/
admin
/
plib
/
modules
/
grafana
/
vendor
/
lcobucci
/
jwt
/
src
/
Filename :
Validator.php
back
Copy
<?php declare (strict_types=1); namespace PleskGrafana\Lcobucci\JWT; use PleskGrafana\Lcobucci\JWT\Validation\Constraint; use PleskGrafana\Lcobucci\JWT\Validation\NoConstraintsGiven; use PleskGrafana\Lcobucci\JWT\Validation\RequiredConstraintsViolated; interface Validator { /** * @throws RequiredConstraintsViolated * @throws NoConstraintsGiven */ public function assert(Token $token, Constraint ...$constraints) : void; /** @throws NoConstraintsGiven */ public function validate(Token $token, Constraint ...$constraints) : bool; }