From: Philipp Date: Fri, 20 Aug 2021 20:30:54 +0000 (+0200) Subject: remove unused $redirect parameter X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8f13319c73a4b3b865a13105eca4bee53c2eecd8;p=friendica.git remove unused $redirect parameter --- diff --git a/src/Network/HTTPRequest.php b/src/Network/HTTPRequest.php index 18c060fc54..320ff04c18 100644 --- a/src/Network/HTTPRequest.php +++ b/src/Network/HTTPRequest.php @@ -472,12 +472,8 @@ class HTTPRequest implements IHTTPRequest /** * {@inheritDoc} - * - * @param int $redirects The recursion counter for internal use - default 0 - * - * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ - public function fetch(string $url, int $timeout = 0, string $accept_content = '', string $cookiejar = '', &$redirects = 0) + public function fetch(string $url, int $timeout = 0, string $accept_content = '', string $cookiejar = '') { $ret = $this->fetchFull($url, $timeout, $accept_content, $cookiejar, $redirects); @@ -486,12 +482,8 @@ class HTTPRequest implements IHTTPRequest /** * {@inheritDoc} - * - * @param int $redirects The recursion counter for internal use - default 0 - * - * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ - public function fetchFull(string $url, int $timeout = 0, string $accept_content = '', string $cookiejar = '', &$redirects = 0) + public function fetchFull(string $url, int $timeout = 0, string $accept_content = '', string $cookiejar = '') { return $this->get( $url,