Skip to content

Commit 08888b7

Browse files
committed
Add missing paraenthesis
1 parent 7e79c91 commit 08888b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/URLSearchParams.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function __construct($init = '')
6464
return;
6565
}
6666

67-
if (is_scalar($init) || is_object($init) && method_exists($init, '__toString')) {
67+
if (is_scalar($init) || (is_object($init) && method_exists($init, '__toString'))) {
6868
$init = IDLString::scrub((string) $init);
6969

7070
if ($init !== '' && $init[0] === '?') {

0 commit comments

Comments
 (0)