X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar/vendor/lcobucci/jwt/src
home
/
gfecatvj
/
sites
/
realesbar
/
vendor
/
lcobucci
/
jwt
/
src
/
π
..
π
Builder.php
(10.75 KB)
π
Claim
π
Claim.php
(733 B)
π
Parser.php
(3.54 KB)
π
Parsing
π
Signature.php
(1.19 KB)
π
Signer
π
Signer.php
(1.26 KB)
π
Token.php
(5.61 KB)
π
ValidationData.php
(2.54 KB)
Editing: Claim.php
<?php /** * This file is part of Lcobucci\JWT, a simple library to handle JWT and JWS * * @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause */ namespace Lcobucci\JWT; use JsonSerializable; /** * Basic interface for token claims * * @author LuΓs OtΓ‘vio Cobucci Oblonczyk <lcobucci@gmail.com> * @since 2.0.0 */ interface Claim extends JsonSerializable { /** * Returns the claim name * * @return string */ public function getName(); /** * Returns the claim value * * @return string */ public function getValue(); /** * Returns the string representation of the claim * * @return string */ public function __toString(); }
Upload File
Create Folder