diff --git a/.gitignore b/.gitignore index 09d0e696..4ae889a9 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,9 @@ report.md node_modules yarn.lock yarn-error.log -/composer.lock -/vendor +composer.lock +vendor /.phpunit.cache/ /.castor.stub.php + +.idea diff --git a/src/webauthn/src/MetadataService/Statement/DisplayPNGCharacteristicsDescriptor.php b/src/webauthn/src/MetadataService/Statement/DisplayPNGCharacteristicsDescriptor.php index d0ceeb35..38a32dfd 100644 --- a/src/webauthn/src/MetadataService/Statement/DisplayPNGCharacteristicsDescriptor.php +++ b/src/webauthn/src/MetadataService/Statement/DisplayPNGCharacteristicsDescriptor.php @@ -19,7 +19,9 @@ public function __construct( public readonly int $compression, public readonly int $filter, public readonly int $interlace, - /** @readonly */ + /** + * @readonly + */ public array $plte = [], ) { $width >= 0 || throw MetadataStatementLoadingException::create('Invalid width'); diff --git a/src/webauthn/src/MetadataService/Statement/VerificationMethodANDCombinations.php b/src/webauthn/src/MetadataService/Statement/VerificationMethodANDCombinations.php index 396e4380..edd24b2d 100644 --- a/src/webauthn/src/MetadataService/Statement/VerificationMethodANDCombinations.php +++ b/src/webauthn/src/MetadataService/Statement/VerificationMethodANDCombinations.php @@ -10,7 +10,9 @@ class VerificationMethodANDCombinations * @param VerificationMethodDescriptor[] $verificationMethods */ public function __construct( - /** @readonly */ + /** + * @readonly + */ public array $verificationMethods = [] ) { }