Updated Rector to commit 39d9c321b99b58ebe32131f08e42cfa4b517ed79

39d9c321b9 [Php83] Early check private method in child before check parent on AddOverrideAttributeToOverriddenMethodsRector (#5622)
This commit is contained in:
Tomas Votruba 2024-02-16 14:42:02 +00:00
parent 258b775511
commit 0d8881ecb3
2 changed files with 5 additions and 2 deletions

View File

@ -127,6 +127,9 @@ CODE_SAMPLE
if ($classMethod->name->toString() === '__construct') {
continue;
}
if ($classMethod->isPrivate()) {
continue;
}
// ignore if it already uses the attribute
if ($this->phpAttributeAnalyzer->hasPhpAttribute($classMethod, 'Override')) {
continue;

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '1.0.1';
public const PACKAGE_VERSION = '39d9c321b99b58ebe32131f08e42cfa4b517ed79';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-02-15 13:49:53';
public const RELEASE_DATE = '2024-02-16 21:39:02';
/**
* @var int
*/