Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
53 | public function isSortAscending(): bool |
||
54 | { |
||
55 | if (false === $this->isSorted()) { |
||
56 | throw new \RuntimeException(sprintf( |
||
57 | 'Cannot determine if sort is ascending when the field ("%s") is not sorted.', |
||
58 | $this->name |
||
59 | )); |
||
60 | } |
||
61 | |||
62 | return $this->gridContext->getOrderings()[$this->name] === 'asc'; |
||
63 | } |
||
64 | |||
85 |