Skip to content

Commit 9cbfac8

Browse files
authored
Merge pull request #74 from smskin/patch-1
Missing WhereNotIn method of Eloquent model
2 parents 835abab + ba81e79 commit 9cbfac8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CacheKey.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ protected function getQueryColumns(array $columns) : string
9090

9191
protected function getTypeClause($where) : string
9292
{
93-
$type =in_array($where['type'], ['In', 'Null', 'NotNull', 'between'])
93+
$type =in_array($where['type'], ['In', 'NotIn', 'Null', 'NotNull', 'between'])
9494
? strtolower($where['type'])
9595
: strtolower($where['operator']);
9696

0 commit comments

Comments
 (0)