Signed-off-by: Roland Haeder <roland@mxchange.org>
$this->config['follow_redirects'] = $follow_redirects;
return $this->doRequest($url, self::METHOD_HEAD, $headers);
} catch (Exception $e) {
- // Let the exception go on its merry way.
- throw $e;
- } finally {
// reset to the old value
$this->config['follow_redirects'] = $old_follow;
+
+ // Let the exception go on its merry way.
+ throw $e;
}
//we've either returned or thrown exception here
+
+ // reset to the old value
+ $this->config['follow_redirects'] = $old_follow;
}
/**