oauth2-client/src/Grant/GrantInterface.php

13 lines
227 B
PHP

<?php
namespace League\OAuth2\Client\Grant;
interface GrantInterface
{
public function __toString();
public function handleResponse($response = []);
public function prepRequestParams($defaultParams, $params);
}