| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Protocol\Planning; |
| 6: | |
| 7: | use LaravelUi5\OData\Service\Contracts\QueryPlanInterface; |
| 8: | |
| 9: | /** |
| 10: | * Sealed abstract base for all query plan types. |
| 11: | * Subclasses are marker-only; all state lives in the concrete class constructors. |
| 12: | */ |
| 13: | abstract readonly class QueryPlan implements QueryPlanInterface {} |
| 14: |