| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | readonly class OrderBy implements Stringable |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * @param non-empty-string $field The field to order by |
||
|
|
|||
| 28 | */ |
||
| 29 | public function __construct( |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Get the join clause as a string. |
||
| 37 | * |
||
| 38 | * @return non-empty-string |
||
| 39 | */ |
||
| 40 | public function __toString(): string |
||
| 47 |