This commit is contained in:
2025-07-14 18:05:40 +08:00
parent 61f549362d
commit 2bf66fc17f
+2 -2
View File
@@ -250,7 +250,7 @@ interface ActiveQueryInterface
*
* @return QueryTrait
*/
public function groupBy(string $name, string $having = NULL): QueryTrait;
public function groupBy(string $name, ?string $having = NULL): QueryTrait;
/**
* @param int $limit
@@ -267,4 +267,4 @@ interface ActiveQueryInterface
public function offset(int $offset): QueryTrait;
}
}