Moved request class to util folder

This commit is contained in:
Alex Bilbie
2013-02-05 15:55:04 +00:00
parent 463803f74d
commit 920fd9344f
2 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace OAuth2\Util;
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);
}