This commit is contained in:
2021-11-10 11:02:07 +08:00
parent f49d7cfa4b
commit d45725603d
+2 -2
View File
@@ -295,10 +295,10 @@ class ActiveQuery extends Component implements ISqlBuilder
/** /**
* @param bool $getSql * @param bool $getSql
* @return string|bool * @return int|bool|string|null
* @throws Exception * @throws Exception
*/ */
public function delete(bool $getSql = false): string|bool public function delete(bool $getSql = false): int|bool|string|null
{ {
$sql = $this->builder->delete(); $sql = $this->builder->delete();
if ($getSql === false) { if ($getSql === false) {