remove unused $redirect parameter
This commit is contained in:
parent
9eba32226c
commit
8f13319c73
|
@ -472,12 +472,8 @@ class HTTPRequest implements IHTTPRequest
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@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);
|
$ret = $this->fetchFull($url, $timeout, $accept_content, $cookiejar, $redirects);
|
||||||
|
|
||||||
|
@ -486,12 +482,8 @@ class HTTPRequest implements IHTTPRequest
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@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(
|
return $this->get(
|
||||||
$url,
|
$url,
|
||||||
|
|
Loading…
Reference in a new issue