/home/techb158/ileadtechnology.com/vendor/lcobucci/jwt/src/Claim
NameSizeModeActions
Basic.php12050644editdlrm
EqualsTo.php7840644editdlrm
Factory.php30880644editdlrm
GreaterOrEqualsTo.php7910644editdlrm
LesserOrEqualsTo.php7920644editdlrm
Validatable.php6480644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/lcobucci/jwt/src/Claim/Basic.php (1205B)
* @since 2.0.0 */ class Basic implements Claim { /** * @var string */ private $name; /** * @var mixed */ private $value; /** * Initializes the claim * * @param string $name * @param mixed $value */ public function __construct($name, $value) { $this->name = $name; $this->value = $value; } /** * {@inheritdoc} */ public function getName() { return $this->name; } /** * {@inheritdoc} */ public function getValue() { return $this->value; } /** * {@inheritdoc} */ public function jsonSerialize() { return $this->value; } /** * {@inheritdoc} */ public function __toString() { return (string) $this->value; } }