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