In   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 2
eloc 6
c 1
b 0
f 1
dl 0
loc 15
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A condition() 0 3 1
1
<?php
2
/**
3
 * Created by enea dhack - 20/06/2020 19:38.
4
 */
5
6
namespace Vaened\Searcher\Constraints;
7
8
use Illuminate\Database\Eloquent\Builder;
9
use Vaened\Searcher\Constraint;
10
11
class In implements Constraint
12
{
13
    private array $values;
14
15
    private string $column;
16
17
    public function __construct(array $values, string $column)
18
    {
19
        $this->values = $values;
20
        $this->column = $column;
21
    }
22
23
    public function condition(Builder $builder): Builder
24
    {
25
        return $builder->whereIn($this->column, $this->values);
0 ignored issues
show
Bug Best Practice introduced by
The expression return $builder->whereIn...>column, $this->values) could return the type Illuminate\Database\Query\Builder which is incompatible with the type-hinted return Illuminate\Database\Eloquent\Builder. Consider adding an additional type-check to rule them out.
Loading history...
26
    }
27
}
28