Skip to content

Commit

Permalink
switched to ^5.3 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
jarektkaczyk committed Mar 3, 2018
1 parent 067ac9d commit c6f03e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ class Builder extends EloquentBuilder
* @var array
*/
protected $operators = [
'=', '<', '>', '<=', '>=', '<>', '!=',
'=', '<', '>', '<=', '>=', '<>', '!=', '<=>',
'like', 'like binary', 'not like', 'between', 'ilike',
'&', '|', '^', '<<', '>>',
'rlike', 'regexp', 'not regexp',
'~', '~*', '!~', '!~*', 'similar to',
'not similar to',
'not similar to', 'not ilike', '~~*', '!~~*',
];

/**
Expand All @@ -31,8 +31,8 @@ class Builder extends EloquentBuilder
* @var array
*/
protected $passthru = [
'toSql', 'lists', 'insert', 'insertGetId', 'pluck', 'value', 'count', 'raw',
'min', 'max', 'avg', 'sum', 'exists', 'getBindings', 'aggregate', 'getConnection'
'toSql', 'lists', 'insert', 'insertGetId', 'pluck', 'value', 'count', 'raw', 'min', 'max',
'avg', 'sum', 'exists', 'doesntExist', 'getBindings', 'aggregate', 'getConnection'
];

/*
Expand Down

0 comments on commit c6f03e5

Please sign in to comment.