Skip to content

Commit

Permalink
Updated Rector to commit 2d862a7c7750c79e4c16be6e7c4e87ba324abfa7
Browse files Browse the repository at this point in the history
rectorphp/rector-src@2d862a7 [CodingStyle] Skip equal modifier on direct parent method compatible on MakeInheritedMethodVisibilitySameAsParentRector (#6406)
  • Loading branch information
TomasVotruba committed Oct 30, 2024
1 parent 9798fd4 commit d62daba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public function refactor(Node $node) : ?Node
/** @var ReflectionMethod $parentReflectionMethod */
$parentReflectionMethod = $nativeClassReflection->getMethod($methodName);
if ($this->isClassMethodCompatibleWithParentReflectionMethod($classMethod, $parentReflectionMethod)) {
continue;
continue 2;
}
$this->changeClassMethodVisibilityBasedOnReflectionMethod($classMethod, $parentReflectionMethod);
$hasChanged = \true;
Expand Down
4 changes: 2 additions & 2 deletions src/Application/VersionResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'd246d27a9442cc08a419e899e07c2c19a680eb80';
public const PACKAGE_VERSION = '2d862a7c7750c79e4c16be6e7c4e87ba324abfa7';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-10-30 00:17:39';
public const RELEASE_DATE = '2024-10-31 04:48:40';
/**
* @var int
*/
Expand Down

0 comments on commit d62daba

Please sign in to comment.