summaryrefslogtreecommitdiff
path: root/ext/curl/tests/curl_copy_handle_basic_004.phpt
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2018-10-14 17:45:48 +0200
committerPeter Kokot <peterkokot@gmail.com>2018-10-14 19:45:12 +0200
commit782352c54ad69c517e3c32b0dd2c25d74842647a (patch)
tree220bdc1e814e9f44b3578d49b3f239a3fdefa1d0 /ext/curl/tests/curl_copy_handle_basic_004.phpt
parent604d4bdae5037e021c1f9d35f08cbeddd610d84c (diff)
downloadphp-git-782352c54ad69c517e3c32b0dd2c25d74842647a.tar.gz
Trim trailing whitespace in *.phpt
Diffstat (limited to 'ext/curl/tests/curl_copy_handle_basic_004.phpt')
-rw-r--r--ext/curl/tests/curl_copy_handle_basic_004.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/curl/tests/curl_copy_handle_basic_004.phpt b/ext/curl/tests/curl_copy_handle_basic_004.phpt
index cad1be9865..ecef566f0b 100644
--- a/ext/curl/tests/curl_copy_handle_basic_004.phpt
+++ b/ext/curl/tests/curl_copy_handle_basic_004.phpt
@@ -19,13 +19,13 @@ Rick Buitenman <rick@meritos.nl>
ob_start(); // start output buffering
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
-
-
+
+
$curl_content = curl_exec($ch);
$copy = curl_copy_handle($ch);
curl_close($ch);
-
- $curl_content_copy = curl_exec($copy);
+
+ $curl_content_copy = curl_exec($copy);
curl_close($copy);
var_dump( $curl_content_copy );