This commit is contained in:
2026-06-30 23:11:55 +08:00
parent 0a95e722d6
commit 9fc910f10f
+5 -4
View File
@@ -281,10 +281,11 @@ class SqlBuilder extends Component
*/
private function make(): string
{
$select = $this->makeCondition();
$select .= $this->makeGroup();
$select .= $this->makeOrder();
return $select;
return join(' ', [
$this->makeCondition(),
$this->makeGroup(),
$this->makeOrder(),
]);
}
/**