Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ class ClassPropertyPHPDocFormattingSniff extends AbstractVariableSniff
T_NULLABLE,
T_BITWISE_AND,
T_TYPE_UNION,
T_READONLY,
];

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,4 +200,14 @@ class correctlyFormattedClassMemberDocBlock
* @deprecated This property will be removed in version 1.0.0 without replacement
*/
protected string $deprecatedWithKeyword;

/**
* @var string
*/
protected readonly string $readOnlyString;

/**
* @var int
*/
protected readonly int $readOnlyInteger;
}