Conditions | 3 |
Paths | 4 |
Total Lines | 8 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
24 | 2 | public function __construct( |
|
25 | array $fields, |
||
26 | Order $order = null, |
||
27 | Strategy $strategy = null |
||
28 | ) { |
||
29 | 2 | $this->fields = $fields; |
|
30 | 2 | $this->order = null === $order ? Order::ASC() : $order; |
|
31 | 2 | $this->strategy = null === $strategy ? Strategy::NULLS_FIRST() : $strategy; |
|
32 | 2 | } |
|
58 |