* @copyright Copyright (c) 2013 PHP League of Extraordinary Packages * @license http://mit-license.org/ * @link http://github.com/php-loep/oauth2-server */ namespace League\OAuth2\Server\Util; interface RequestInterface { public function get($index = null); public function post($index = null); public function cookie($index = null); public function file($index = null); public function server($index = null); public function header($index = null); }