| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Protocol\Planning; |
| 6: | |
| 7: | use LaravelUi5\OData\Protocol\Planning\Expression\FilterExpression; |
| 8: | |
| 9: | final readonly class OrderByItem |
| 10: | { |
| 11: | public function __construct( |
| 12: | public readonly FilterExpression $expression, // typically PropertyPathExpression |
| 13: | public readonly OrderDirection $direction, |
| 14: | ) {} |
| 15: | } |
| 16: |