| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Authorization\V1; |
| 6: | |
| 7: | final readonly class AuthorizationScope |
| 8: | { |
| 9: | public function __construct( |
| 10: | public readonly string $scope, |
| 11: | public readonly string $description, |
| 12: | public readonly ?string $grant = null, |
| 13: | ) {} |
| 14: | } |
| 15: |