We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f7a245 commit 844ec9cCopy full SHA for 844ec9c
1 file changed
src/Selection.php
@@ -70,9 +70,9 @@ public function whereOr(array $cond) : static
70
/**
71
* Function to pass group query.
72
*/
73
- public function group(string $group) : static
+ public function order(string $order, string|int|float|array|\BackedEnum|\DateTime ...$params) : static
74
{
75
- $this->selection->group($group);
+ $this->selection->order($order, ...$params);
76
77
return $this;
78
}
0 commit comments