Skip to content

Commit

Permalink
Fix typo in docblock annotation for @deprecated property (#696)
Browse files Browse the repository at this point in the history
Corrected the typo in the docblock annotation from `@@deprecated` to `@deprecated`. This ensures consistency with standard annotation formatting and improves code readability for developers.
  • Loading branch information
Spomky authored Feb 16, 2025
1 parent 2a013fa commit a5f3223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webauthn/src/PublicKeyCredentialEntity.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
abstract class PublicKeyCredentialEntity
{
/**
* @@deprecated since 5.1.0 and will be removed in 6.0.0. This value is always null.
* @deprecated since 5.1.0 and will be removed in 6.0.0. This value is always null.
*/
public ?string $icon = null;

Expand Down

0 comments on commit a5f3223

Please sign in to comment.