Skip to content

Commit

Permalink
Updated Rector to commit c9fe3caacced982e1c21d7203e9ea0f1bb2092c8
Browse files Browse the repository at this point in the history
rectorphp/rector-src@c9fe3ca [Transform] Allow transform phpVersion() to withPhpVersion() on RectorConfigBuilderRector (#5678)
  • Loading branch information
TomasVotruba committed Mar 3, 2024
1 parent d31429d commit 6986e1f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,11 @@ public function refactor(Node $node) : ?Node
$hasChanged = \true;
continue;
}
if ($name === 'phpVersion') {
$newExpr = $this->nodeFactory->createMethodCall($newExpr, 'withPhpVersion', [$value]);
$hasChanged = \true;
continue;
}
// implementing method by method
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 = 'dea2e16665cf567c20664c7ef9bac38d0d7d4f49';
public const PACKAGE_VERSION = 'c9fe3caacced982e1c21d7203e9ea0f1bb2092c8';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-03-02 13:06:24';
public const RELEASE_DATE = '2024-03-03 08:00:50';
/**
* @var int
*/
Expand Down

0 comments on commit 6986e1f

Please sign in to comment.