/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/GreaterOrEqualsTo.php (791B)
* @since 2.0.0 */ class GreaterOrEqualsTo extends Basic implements Claim, Validatable { /** * {@inheritdoc} */ public function validate(ValidationData $data) { if ($data->has($this->getName())) { return $this->getValue() >= $data->get($this->getName()); } return true; } }