Skip to content

Commit 5b0bbb5

Browse files
committed
Clean up
1 parent cd08b5d commit 5b0bbb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Curl/Curl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1193,7 +1193,7 @@ private function buildUrl($url, $mixed_data = '')
11931193
{
11941194
$query_string = '';
11951195
if (!empty($mixed_data)) {
1196-
$query_mark = (strpos($url,'?')>0)? '&':'?';
1196+
$query_mark = strpos($url, '?') > 0 ? '&' : '?';
11971197
if (is_string($mixed_data)) {
11981198
$query_string .= $query_mark . $mixed_data;
11991199
} elseif (is_array($mixed_data)) {

0 commit comments

Comments
 (0)