Skip to content

Commit

Permalink
Updated Rector to commit 1b1807b0f8426641e13e5914389e1c118b3a3d14
Browse files Browse the repository at this point in the history
rectorphp/rector-src@1b1807b [Privatization] Skip with parameter on PrivatizeLocalGetterToPropertyRector (#6412)
  • Loading branch information
TomasVotruba committed Nov 8, 2024
1 parent 10f5ce7 commit 13fa633
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,9 @@ public function refactor(Node $node) : ?Node
}
private function matchLocalPropertyFetchInGetterMethod(ClassMethod $classMethod) : ?PropertyFetch
{
if ($classMethod->params !== []) {
return null;
}
$stmts = (array) $classMethod->stmts;
if (\count($stmts) !== 1) {
return null;
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 = '293eb9701e8035c7d1e57ba0627a637ad70c7c16';
public const PACKAGE_VERSION = '1b1807b0f8426641e13e5914389e1c118b3a3d14';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-11-06 20:29:42';
public const RELEASE_DATE = '2024-11-08 17:26:04';
/**
* @var int
*/
Expand Down

0 comments on commit 13fa633

Please sign in to comment.