Skip to content

Commit 4cee981

Browse files
authored
remove optional param before required param
1 parent 8b38cea commit 4cee981

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JsonQueriable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ public function whereNull($key = null)
512512
* @param string $key
513513
* @return $this
514514
*/
515-
public function whereBool($key = null, $value)
515+
public function whereBool($key, $value)
516516
{
517517
if (is_bool($value)) {
518518
$this->where($key, '==', $value);

0 commit comments

Comments
 (0)