Total Complexity | 3 |
Total Lines | 53 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class Between extends AbstractQuery |
||
11 | { |
||
12 | /** |
||
13 | * @var QueryInterface |
||
14 | */ |
||
15 | private $query; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $min; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | private $max; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | private $options; |
||
31 | |||
32 | public function __construct( |
||
46 | } |
||
47 | |||
48 | public function toArray(): array |
||
66 |