source: extensions/Google2Piwigo/include/OAuth2/GrantType/IGrantType.php @ 28832

Last change on this file since 28832 was 28832, checked in by mistic100, 10 years ago

fix oauth flow

File size: 351 bytes
Line 
1<?php
2
3/**
4 * Specific GrantType Interface
5 */
6interface OAuth2_GrantType_IGrantType 
7{
8    /**
9     * Adds a specific Handling of the parameters
10     *
11     * @return array of Specific parameters to be sent.
12     * @param  mixed  $parameters the parameters array (passed by reference)
13     */
14    public function validateParameters(&$parameters);
15}
Note: See TracBrowser for help on using the repository browser.