| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Service\Discovery\Attributes; |
| 6: | |
| 7: | use Attribute; |
| 8: | |
| 9: | #[Attribute(Attribute::TARGET_METHOD)] |
| 10: | final readonly class ODataNavigation |
| 11: | { |
| 12: | public function __construct( |
| 13: | public ?string $name = null, |
| 14: | ) {} |
| 15: | } |
| 16: | |