We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46a0371 commit 9b1df5fCopy full SHA for 9b1df5f
src/CurlUtils/CurlHandle.php
@@ -95,26 +95,6 @@ public function close():CurlHandleInterface{
95
return $this;
96
}
97
98
- /**
99
- * @return \chillerlan\HTTP\CurlUtils\CurlHandleInterface
100
- */
101
- public function reset():CurlHandleInterface{
102
-
103
- if(is_resource($this->curl)){
104
105
- curl_setopt_array($this->curl, [
106
- CURLOPT_HEADERFUNCTION => null,
107
- CURLOPT_READFUNCTION => null,
108
- CURLOPT_WRITEFUNCTION => null,
109
- CURLOPT_PROGRESSFUNCTION => null,
110
- ]);
111
112
- curl_reset($this->curl);
113
- }
114
115
- return $this;
116
117
118
/**
119
* @return array
120
*/
0 commit comments