File Manager Lite
Dir:
/home/u540325668/domains/telegroupstall.com/public_html/vendor/lcobucci/jwt/src
Upload
[..]
Builder.php (10.75 KB)
Edit
Rename
Del
Claim/
Rename
Del
Claim.php (733 B)
Edit
Rename
Del
Parsing/
Rename
Del
Signature.php (1.15 KB)
Edit
Rename
Del
Signer/
Rename
Del
Edit: 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(); }
Simpan