| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Protocol\Planning; |
| 6: | |
| 7: | use LaravelUi5\OData\Edm\Contracts\Container\SingletonInterface; |
| 8: | |
| 9: | final readonly class SingletonQueryPlan extends QueryPlan |
| 10: | { |
| 11: | public function __construct( |
| 12: | public SingletonInterface $singleton, |
| 13: | public SelectList $select, |
| 14: | ) {} |
| 15: | } |
| 16: |