| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Aggregation\V1; |
| 6: | |
| 7: | /** |
| 8: | * Aggregation capabilities on a navigation path |
| 9: | */ |
| 10: | final readonly class NavigationPropertyAggregationCapabilities |
| 11: | { |
| 12: | public function __construct( |
| 13: | public readonly array $customAggregates, |
| 14: | public readonly mixed $applySupported = null, |
| 15: | ) {} |
| 16: | } |
| 17: |