Update CREDITS ahead of 1.34.0 release via updateCredits
[lhc/web/wiklou.git] / includes / FauxRequest.php
index 906e5e2..9337270 100644 (file)
@@ -86,13 +86,6 @@ class FauxRequest extends WebRequest {
                return (string)$this->getVal( $name, $default );
        }
 
-       /**
-        * @return array
-        */
-       public function getValues() {
-               return $this->data;
-       }
-
        /**
         * @return array
         */
@@ -170,17 +163,6 @@ class FauxRequest extends WebRequest {
                return $this->requestUrl;
        }
 
-       public function getFullRequestURL() {
-               // Pass an explicit PROTO constant instead of PROTO_CURRENT so that we
-               // do not rely on state from the global $wgRequest object (which it would,
-               // via wfGetServerUrl/wfExpandUrl/$wgRequest->protocol).
-               if ( $this->protocol === 'http' ) {
-                       return wfGetServerUrl( PROTO_HTTP ) . $this->getRequestURL();
-               } else {
-                       return wfGetServerUrl( PROTO_HTTPS ) . $this->getRequestURL();
-               }
-       }
-
        public function getProtocol() {
                return $this->protocol;
        }