oauth2-server/src/OAuth2/RequestInterface.php
Daniel Horrigan a3fd22b3dd Changing Case
2013-01-04 14:44:58 -05:00

25 lines
537 B
PHP

<?php
namespace OAuth2;
interface RequestInterface
{
public static function buildFromGlobals();
public function __construct(array $get = array(), array $post = array(), array $cookies = array(), array $files = array(), array $server = array(), $headers = array());
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);
}