Skip to content

Commit a470ce9

Browse files
committed
Clean up
1 parent e59990b commit a470ce9

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

examples/post_multiple_values_same_key_without_indexes.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<?php
22
// keywords:
3-
// Django: MultiValueDict, QueryDict, request.GET.getlist(), request.POST.getlist(), urllib.urlencode, parse.urlencode
4-
// Java: request.getParameterValues()
3+
// Django: MultiValueDict, QueryDict, request.GET.getlist(), request.POST.getlist()
4+
// Python: urllib.urlencode, parse.urlencode
5+
// Java: request.getParameterValues()
56

67
require __DIR__ . '/../vendor/autoload.php';
78

scripts/bump_major_version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
'const VERSION = \'' . $new_version . '\';',
1414
),
1515
) as $info) {
16-
list($filepath, $find, $replace) = $info;
16+
list($filepath, $find, $replace) = $info;
1717
$data = preg_replace($find, $replace, file_get_contents($filepath));
1818
file_put_contents($filepath, $data);
1919
}

scripts/bump_minor_version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
'const VERSION = \'' . $new_version . '\';',
1414
),
1515
) as $info) {
16-
list($filepath, $find, $replace) = $info;
16+
list($filepath, $find, $replace) = $info;
1717
$data = preg_replace($find, $replace, file_get_contents($filepath));
1818
file_put_contents($filepath, $data);
1919
}

scripts/bump_patch_version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
'const VERSION = \'' . $new_version . '\';',
1414
),
1515
) as $info) {
16-
list($filepath, $find, $replace) = $info;
16+
list($filepath, $find, $replace) = $info;
1717
$data = preg_replace($find, $replace, file_get_contents($filepath));
1818
file_put_contents($filepath, $data);
1919
}

tests/before_script.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
set -x
2-
31
phpunit_shim() {
42
# -class CurlTest extends \PHPUnit\Framework\TestCase
53
# +class CurlTest extends \PHPUnit_Framework_TestCase

0 commit comments

Comments
 (0)