Skip to content

Commit 95c9f92

Browse files
committed
Clean up
1 parent 36709ad commit 95c9f92

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

examples/delete.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
// curl --request DELETE "https://httpbin.org/delete?key=value" --data "a=1&b=2&c=3"
77

88
$curl = new Curl();
9-
$curl->delete('https://httpbin.org/delete',
9+
$curl->delete(
10+
'https://httpbin.org/delete',
1011
array(
1112
'key' => 'value',
1213
),

tests/PHPCurlClass/PHPCurlClassTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,6 @@ public function testDownloadRange()
711711
$filesize + 3,
712712

713713
) as $length) {
714-
715714
$source = Test::TEST_URL;
716715
$destination = Helper\get_tmp_file_path();
717716

@@ -721,7 +720,6 @@ public function testDownloadRange()
721720

722721
// Start with $length bytes of file.
723722
} else {
724-
725723
// Simulate resuming partially downloaded temporary file.
726724
$partial_filename = $destination . '.pccdownload';
727725

0 commit comments

Comments
 (0)