blob: a744ea9da79658ce2275e86ea784198f9afa0322 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
namespace League\OAuth2\Client\Grant;
interface GrantInterface
{
public function __toString();
public function handleResponse($response = []);
public function prepRequestParams($defaultParams, $params);
}
|