From a2bf4e0dfb681754866670d8131c8c25f09c50e5 Mon Sep 17 00:00:00 2001 From: Dave Widmer Date: Fri, 6 Sep 2013 09:14:24 -0400 Subject: [PATCH] Removing constructor and buildFromGlobals from RequestInterface. Fixes: #88 --- src/League/OAuth2/Server/Util/RequestInterface.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/League/OAuth2/Server/Util/RequestInterface.php b/src/League/OAuth2/Server/Util/RequestInterface.php index 820ce911..00b8dc8e 100644 --- a/src/League/OAuth2/Server/Util/RequestInterface.php +++ b/src/League/OAuth2/Server/Util/RequestInterface.php @@ -14,10 +14,6 @@ namespace League\OAuth2\Server\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);