Updated Rector to commit 99dbc0d8b7ca27e803c78657979f574476208125

99dbc0d8b7 [Experiment][TypeDeclaration] Allow change abstract class methods with body on ReturnType*Rector (#5344)
This commit is contained in:
Tomas Votruba 2023-12-09 17:15:42 +00:00
parent ba2d636bcd
commit 0125f4dfcf
2 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ final class ClassMethodReturnTypeOverrideGuard
if (!$classReflection instanceof ClassReflection) {
return \true;
}
if ($classReflection->isAbstract()) {
if ($classMethod->isAbstract()) {
return \true;
}
if ($classReflection->isInterface()) {

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'bc544cf6f72f9296403ae906a3be83093ba08076';
public const PACKAGE_VERSION = '99dbc0d8b7ca27e803c78657979f574476208125';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2023-12-09 21:29:50';
public const RELEASE_DATE = '2023-12-10 00:13:21';
/**
* @var int
*/