UnknownSec Bypass
403
:
/
var
/
www
/
zenithentcare
/
vendor
/
lcobucci
/
jwt
/
src
/
Validation
/
Constraint
/ [
drwxrwxr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
IssuedBy.php
<?php namespace Lcobucci\JWT\Validation\Constraint; use Lcobucci\JWT\Token; use Lcobucci\JWT\Validation\Constraint; use Lcobucci\JWT\Validation\ConstraintViolation; final class IssuedBy implements Constraint { /** @var string[] */ private $issuers; /** @param list<string> $issuers */ public function __construct(...$issuers) { $this->issuers = $issuers; } public function assert(Token $token) { if (! $token->hasBeenIssuedBy(...$this->issuers)) { throw new ConstraintViolation( 'The token was not issued by the given issuers' ); } } }
Copyright © 2025 - UnknownSec