Compare commits

..

2 Commits

Author SHA1 Message Date
Dave Mc Nicoll
dcccce7893 Merge branch 'master' of https://git.mcnd.ca/mcndave/ulmus 2023-02-03 14:06:13 +00:00
Dave Mc Nicoll
31f031715d - Fixed a bug within notIn() statement 2023-02-03 14:06:00 +00:00
2 changed files with 2 additions and 2 deletions

View File

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

View File

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