Skip to content

Commit 4b7a582

Browse files
committed
Updated Rector to commit fbb92469f8b808e54564104866cf50940b341f86
rectorphp/rector-src@fbb9246 Typo fix: constantName (#7057)
1 parent 2ca3e22 commit 4b7a582

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Application/VersionResolver.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ final class VersionResolver
1919
* @api
2020
* @var string
2121
*/
22-
public const PACKAGE_VERSION = '22a54d9ce193f56f27a7f663d0d74831bb560a31';
22+
public const PACKAGE_VERSION = 'fbb92469f8b808e54564104866cf50940b341f86';
2323
/**
2424
* @api
2525
* @var string
2626
*/
27-
public const RELEASE_DATE = '2025-07-10 09:53:36';
27+
public const RELEASE_DATE = '2025-07-10 10:43:06';
2828
/**
2929
* @var int
3030
*/

src/PhpAttribute/AnnotationToAttributeMapper/ClassConstFetchAnnotationToAttributeMapper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function map($value) : Node
4545
}
4646
try {
4747
RectorAssert::className(\ltrim($class, '\\'));
48-
RectorAssert::propertyName($constant);
48+
RectorAssert::constantName($constant);
4949
} catch (InvalidArgumentException $exception) {
5050
return new String_($value);
5151
}

0 commit comments

Comments
 (0)