diff --git a/src/Curl/Curl.php b/src/Curl/Curl.php index aa20126..930f86c 100644 --- a/src/Curl/Curl.php +++ b/src/Curl/Curl.php @@ -234,6 +234,11 @@ class Curl $this->options[$option] = $value; return curl_setopt($ch, $option, $value); } + + public function getOpt($option) + { + return $this->options[$option]; + } public function verbose($on = true) {