芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/giga.mgaplay.com.br/vendor/lcobucci/jwt/src/Validation/Constraint/IssuedBy.php
$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' ); } } }