D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
plib
/
modules
/
wp-toolkit
/
vendor
/
lcobucci
/
jwt
/
src
/
Validation
/
Constraint
/
Filename :
RelatedTo.php
back
Copy
<?php declare (strict_types=1); namespace WPToolkitDependenciesIsolationPrefix\Lcobucci\JWT\Validation\Constraint; use WPToolkitDependenciesIsolationPrefix\Lcobucci\JWT\Token; use WPToolkitDependenciesIsolationPrefix\Lcobucci\JWT\Validation\Constraint; use WPToolkitDependenciesIsolationPrefix\Lcobucci\JWT\Validation\ConstraintViolation; final class RelatedTo implements Constraint { private string $subject; public function __construct(string $subject) { $this->subject = $subject; } public function assert(Token $token) : void { if (!$token->isRelatedTo($this->subject)) { throw new ConstraintViolation('The token is not related to the expected subject'); } } }