Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ class VerificationMethodANDCombinations
* @param VerificationMethodDescriptor[] $verificationMethods
*/
public function __construct(
/** @readonly */
/**
* @readonly
*/
public array $verificationMethods = []
) {
}
Expand Down