Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2.0185 |
Changes | 0 |
1 | <?php |
||
44 | 1 | public function setOrderByParameters($orderBy): void |
|
45 | { |
||
46 | 1 | [$column, $direction] = explode(',', $orderBy); |
|
47 | |||
48 | 1 | $this->column = $column; |
|
49 | 1 | $this->direction = $direction ?? 'asc'; |
|
50 | |||
51 | 1 | if (! \in_array($this->direction, ['asc', 'desc'])) { |
|
52 | $this->direction = 'asc'; |
||
53 | } |
||
79 |