oauth2-client/src/Grant/GrantInterface.php

13 lines
227 B
PHP
Raw Normal View History

2013-02-26 15:33:00 +04:00
<?php
2013-05-28 14:00:24 +04:00
namespace League\OAuth2\Client\Grant;
2013-02-26 15:33:00 +04:00
2013-11-18 06:45:28 +04:00
interface GrantInterface
{
2013-02-26 15:33:00 +04:00
public function __toString();
2014-11-09 00:30:40 +03:00
public function handleResponse($response = []);
2013-02-26 15:33:00 +04:00
public function prepRequestParams($defaultParams, $params);
2013-11-18 06:45:28 +04:00
}