We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 729baef commit 2b29dfbCopy full SHA for 2b29dfb
src/Database/Query/FMBaseBuilder.php
@@ -1078,14 +1078,14 @@ public function getCountForPagination($columns = ['*'])
1078
return $this->count($columns);
1079
}
1080
1081
- public function toRawSql()
+ public function toRawSql(): string
1082
{
1083
$this->computeWhereIns();
1084
1085
- return $this->wheres;
+ return json_encode($this->wheres);
1086
1087
1088
- public function toSql()
+ public function toSql(): string
1089
1090
1091
return $this->toRawSql();
0 commit comments