Your IP : 216.73.216.84


Current Path : /home/helpink/www/libraries/vendor/web-token/jwt-library/Core/
Upload File :
Current File : /home/helpink/www/libraries/vendor/web-token/jwt-library/Core/JWT.php

<?php

declare(strict_types=1);

namespace Jose\Component\Core;

interface JWT
{
    /**
     * Returns the payload of the JWT. null is a valid payload (e.g. JWS with detached payload).
     */
    public function getPayload(): ?string;
}