Skip to content

Commit

Permalink
Updated Rector to commit 645aaa93cfa86b06db8de8d8671da91d81b4bddf
Browse files Browse the repository at this point in the history
rectorphp/rector-src@645aaa9 [DeadCode] Skip RemoveUnusedPrivatePropertyRector in middle assign (#6363)
  • Loading branch information
TomasVotruba committed Oct 8, 2024
1 parent 842acb4 commit 504b14b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
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 = 'a44e8351e20e9ad994cd0ff130575b9c3def45c5';
public const PACKAGE_VERSION = '645aaa93cfa86b06db8de8d8671da91d81b4bddf';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-10-08 15:55:55';
public const RELEASE_DATE = '2024-10-08 17:43:58';
/**
* @var int
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public function enterNode(Node $node) : ?Node
if ($node->expr instanceof Assign) {
$node->var->setAttribute(AttributeKey::IS_MULTI_ASSIGN, \true);
$node->expr->setAttribute(AttributeKey::IS_MULTI_ASSIGN, \true);
$node->expr->var->setAttribute(AttributeKey::IS_ASSIGNED_TO, \true);
}
return null;
}
Expand Down

0 comments on commit 504b14b

Please sign in to comment.