Updated Rector to commit 486986e43330988fb76758b141727586048b01a4

486986e433 [Php80] Keep single quoted Argument Attribute on AnnotationToAttributeRector (#5214)
This commit is contained in:
Tomas Votruba 2023-10-29 13:37:56 +00:00
parent 685f0bab53
commit fcf4282d86
2 changed files with 5 additions and 2 deletions

View File

@ -167,6 +167,9 @@ final class ArrayParser
if ($key !== null) {
return new ArrayItemNode($value, $key);
}
if (\is_string($value) && $valueQuoteKind === String_::KIND_SINGLE_QUOTED) {
$value = \trim($value, "'");
}
return new ArrayItemNode($value);
}
/**

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '3c526c91f05faf276fb08bedb31bc1dc19cfb678';
public const PACKAGE_VERSION = '486986e43330988fb76758b141727586048b01a4';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2023-10-29 18:08:10';
public const RELEASE_DATE = '2023-10-29 20:35:09';
/**
* @var int
*/