PATH:
home
/
lab2454c
/
sothebry.softkinesis.com
/
backups
/
core
/
vendor
/
lcobucci
/
jwt
/
src
/
Validation
<?php declare(strict_types=1); namespace Lcobucci\JWT\Validation; use Lcobucci\JWT\Token; interface Constraint { /** @throws ConstraintViolation */ public function assert(Token $token): void; }
[+]
Constraint
[+]
..
[-] Validator.php
[edit]
[-] NoConstraintsGiven.php
[edit]
[-] ConstraintViolation.php
[edit]
[-] Constraint.php
[edit]
[-] RequiredConstraintsViolated.php
[edit]