Compare commits

..

No commits in common. "dcccce78932a8804f48db5b01c61c541ac0caeda" and "26ffecbb6edb4f7c8308da72f4c5a7d10a596014" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -452,7 +452,7 @@ class Repository
public function delete(...$args) : self public function delete(...$args) : self
{ {
$this->queryBuilder->delete(); $this->queryBuilder->delete($this->alias);
return $this; return $this;
} }

View File

@ -111,7 +111,7 @@ trait ConditionTrait
public function notIn(string|\Stringable $field, $value) : self public function notIn(string|\Stringable $field, $value) : self
{ {
$this->queryBuilder->where($field, $value, Query\Where::COMPARISON_IN, Query\Where::CONDITION_AND, true); $this->queryBuilder->where($field, $value, Query\Where::COMPARISON_IN, true);
return $this; return $this;
} }