Changing Case

This commit is contained in:
Daniel Horrigan
2013-01-04 14:44:02 -05:00
parent 31b36f23e7
commit a3fd22b3dd
31 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?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);
}