| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Validation\V1; |
| 6: | |
| 7: | /** |
| 8: | * Entities related via the single- or collection-valued navigation property identified by `path` are also related via the collection-valued navigation property identified by `target`. |
| 9: | */ |
| 10: | final readonly class ItemsOfType |
| 11: | { |
| 12: | public function __construct( |
| 13: | public readonly string $path, |
| 14: | public readonly string $target, |
| 15: | ) {} |
| 16: | } |
| 17: |