Skip to content

Commit 2b29dfb

Browse files
committed
changed return types to string to match parent methods
1 parent 729baef commit 2b29dfb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Database/Query/FMBaseBuilder.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1078,14 +1078,14 @@ public function getCountForPagination($columns = ['*'])
10781078
return $this->count($columns);
10791079
}
10801080

1081-
public function toRawSql()
1081+
public function toRawSql(): string
10821082
{
10831083
$this->computeWhereIns();
10841084

1085-
return $this->wheres;
1085+
return json_encode($this->wheres);
10861086
}
10871087

1088-
public function toSql()
1088+
public function toSql(): string
10891089
{
10901090

10911091
return $this->toRawSql();

0 commit comments

Comments
 (0)