| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class Between implements Constraint |
||
| 13 | { |
||
| 14 | private Rangeable $range; |
||
| 15 | |||
| 16 | private string $column; |
||
| 17 | |||
| 18 | public function __construct(Rangeable $range, string $column) |
||
| 19 | { |
||
| 20 | $this->range = $range; |
||
| 21 | $this->column = $column; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function condition(Builder $builder): Builder |
||
| 27 | } |
||
| 28 | } |
||
| 29 |