Updated Rector to commit 171afe1ffc99f609981d6c7a03c4e97b319cc92a

171afe1ffc [Php80] Use more proper check for doc comment multi lines on AttributeValueResolver (#6587)
This commit is contained in:
Tomas Votruba 2024-12-14 19:32:49 +00:00
parent 66831f47a9
commit 262b29c337
2 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ final class AttributeValueResolver
}
if (Strings::match($docValueLine, self::END_SLASH_REGEX) === null) {
if ($hasPreviousEndSlash === \false && $key > 0) {
if ($key === 1) {
if ($docComment === '') {
$docComment .= $docValueLine;
} else {
$docComment .= "\n * " . $docValueLine;

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'ccb2fa2d2f034be091024929deecebe8829a88f6';
public const PACKAGE_VERSION = '171afe1ffc99f609981d6c7a03c4e97b319cc92a';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-12-15 02:23:43';
public const RELEASE_DATE = '2024-12-14 19:30:07';
/**
* @var int
*/