| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Core\V1; |
| 6: | |
| 7: | /** |
| 8: | * The Link type is inspired by the `atom:link` element, see [RFC4287](https://tools.ietf.org/html/rfc4287#section-4.2.7), and the `Link` HTTP header, see [RFC5988](https://tools.ietf.org/html/rfc5988) |
| 9: | */ |
| 10: | final readonly class Link |
| 11: | { |
| 12: | public function __construct( |
| 13: | public readonly string $rel, |
| 14: | public readonly string $href, |
| 15: | ) {} |
| 16: | } |
| 17: |