/home/techb158/ileadtechnology.com/SSM/vendor/tymon/jwt-auth/src/Contracts/Providers
NameSizeModeActions
Auth.php7280644editdlrm
JWT.php5160644editdlrm
Storage.php8880644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/tymon/jwt-auth/src/Contracts/Providers/JWT.php (516B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Tymon\JWTAuth\Contracts\Providers; interface JWT { /** * @param array $payload * * @return string */ public function encode(array $payload); /** * @param string $token * * @return array */ public function decode($token); }