| 1 | <?php |
||
| 11 | class InNotInScope extends BaseScope |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var array context to parse |
||
| 15 | */ |
||
| 16 | protected $contexts = [ |
||
| 17 | 'in' => 'whereIn', |
||
| 18 | 'notIn' => 'whereNotIn', |
||
| 19 | ]; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param Builder $builder |
||
| 23 | * @param Model $model |
||
| 24 | * |
||
| 25 | * @return Builder |
||
| 26 | */ |
||
| 27 | public function apply(Builder $builder, Model $model) |
||
| 41 | } |
||
| 42 |