oauth2-client/src/Grant/GrantInterface.php

13 lines
232 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();
public function handleResponse($response = array());
public function prepRequestParams($defaultParams, $params);
2013-11-18 06:45:28 +04:00
}