1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace LaravelUi5\OData\Vocabularies\Capabilities\V1;
6:
7: /**
8: * A non-empty collection lists the full set of supported protocols. A empty collection means 'only HTTP is supported'
9: */
10: final readonly class CallbackType
11: {
12: public function __construct(
13: public readonly array $callbackProtocols,
14: ) {}
15: }
16: