Wrap option string values in quotes when displaying diagnostic output

This commit is contained in:
Zach Borboa
2023-10-21 06:05:18 -07:00
parent 35e14e3cdd
commit 69034d052f
+1 -1
View File
@@ -1701,7 +1701,7 @@ class Curl extends BaseCurl
}
if (is_string($value)) {
echo ' ' . $value . "\n";
echo ' "' . $value . '"' . "\n";
} elseif (is_int($value)) {
echo ' ' . $value;