| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Protocol\Planning; |
| 6: | |
| 7: | use LaravelUi5\OData\Edm\Contracts\Container\EntitySetInterface; |
| 8: | |
| 9: | final readonly class EntityQueryPlan extends QueryPlan |
| 10: | { |
| 11: | public function __construct( |
| 12: | public EntitySetInterface $target, |
| 13: | public KeyExpression $key, |
| 14: | public SelectList $select, |
| 15: | public ExpandList $expand, |
| 16: | public ?NavigationAnchor $anchor = null, |
| 17: | ) {} |
| 18: | } |
| 19: |