| Total Complexity | 6 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | final class DoNotSort implements Sorting |
||
| 19 | { |
||
| 20 | private function __construct() |
||
| 22 | } |
||
| 23 | |||
| 24 | /** @deprecated */ |
||
| 25 | public static function atAll(): Sorting |
||
| 28 | } |
||
| 29 | |||
| 30 | public function field(): string |
||
| 31 | { |
||
| 32 | return ''; |
||
| 33 | } |
||
| 34 | |||
| 35 | public function next(): Sorting |
||
| 36 | { |
||
| 37 | return $this; |
||
| 38 | } |
||
| 39 | |||
| 40 | public function ascends(): bool |
||
| 41 | { |
||
| 42 | return false; |
||
| 43 | } |
||
| 44 | |||
| 45 | public function isRequired(): bool |
||
| 48 | } |
||
| 49 | } |
||
| 50 |