File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -168,9 +168,9 @@ Curl::downloadComplete($fh)
168
168
Curl::error($callback)
169
169
Curl::exec($ch = null)
170
170
Curl::get($url, $data = array())
171
- Curl::getCookie($key) {
171
+ Curl::getCookie($key)
172
172
Curl::getOpt($option)
173
- Curl::getResponseCookie($key) {
173
+ Curl::getResponseCookie($key)
174
174
Curl::head($url, $data = array())
175
175
Curl::headerCallback($ch, $header)
176
176
Curl::options($url, $data = array())
Original file line number Diff line number Diff line change @@ -549,7 +549,8 @@ public function setCookie($key, $value)
549
549
* @access public
550
550
* @param $key
551
551
*/
552
- public function getCookie ($ key ) {
552
+ public function getCookie ($ key )
553
+ {
553
554
return $ this ->getResponseCookie ($ key );
554
555
}
555
556
@@ -559,7 +560,8 @@ public function getCookie($key) {
559
560
* @access public
560
561
* @param $key
561
562
*/
562
- public function getResponseCookie ($ key ) {
563
+ public function getResponseCookie ($ key )
564
+ {
563
565
return isset ($ this ->responseCookies [$ key ]) ? $ this ->responseCookies [$ key ] : null ;
564
566
}
565
567
You can’t perform that action at this time.
0 commit comments