1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace LaravelUi5\OData\Vocabularies\Authorization\V1;
6:
7: /**
8: * Security note: OAuth2 implicit grant is considered to be not secure and should not be used by clients, see [OAuth 2.0 Security Best Current Practice](https://datatracker.ietf.org/doc/html/draft-ietf-oauth-security-topics.html#name-implicit-grant).
9: */
10: final readonly class OAuth2Implicit
11: {
12: public function __construct(
13: public readonly string $authorizationUrl,
14: ) {}
15: }
16: