/home/desid573/public_html/payment/xero-2/vendor/league/oauth2-client/src/Grant
NameSizeModeActions
Exception/-0755rm
AbstractGrant.php24690644editdlrm
AuthorizationCode.php10210644editdlrm
ClientCredentials.php9910644editdlrm
GrantFactory.php26600644editdlrm
Password.php10630644editdlrm
RefreshToken.php10140644editdlrm
Edit: /home/desid573/public_html/payment/xero-2/vendor/league/oauth2-client/src/Grant/Password.php (1063B)
* @license http://opensource.org/licenses/MIT MIT * @link http://thephpleague.com/oauth2-client/ Documentation * @link https://packagist.org/packages/league/oauth2-client Packagist * @link https://github.com/thephpleague/oauth2-client GitHub */ namespace League\OAuth2\Client\Grant; /** * Represents a resource owner password credentials grant. * * @link http://tools.ietf.org/html/rfc6749#section-1.3.3 Resource Owner Password Credentials (RFC 6749, §1.3.3) */ class Password extends AbstractGrant { /** * @inheritdoc */ protected function getName() { return 'password'; } /** * @inheritdoc */ protected function getRequiredRequestParameters() { return [ 'username', 'password', ]; } }