Skip to content

Commit 8450739

Browse files
committed
fix: revert method name changed accidentally
1 parent 758889a commit 8450739

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

system/Database/BaseBuilder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3274,7 +3274,7 @@ protected function isLiteral(string $str): bool
32743274
*
32753275
* @return $this
32763276
*/
3277-
public function resetQueryAsData()
3277+
public function resetQuery()
32783278
{
32793279
$this->resetSelect();
32803280
$this->resetWrite();
@@ -3456,7 +3456,7 @@ protected function setBind(string $key, $value = null, bool $escape = true): str
34563456
*/
34573457
protected function cleanClone()
34583458
{
3459-
return (clone $this)->from([], true)->resetQueryAsData();
3459+
return (clone $this)->from([], true)->resetQuery();
34603460
}
34613461

34623462
/**

0 commit comments

Comments
 (0)