Updated Rector to commit c9fe3caacced982e1c21d7203e9ea0f1bb2092c8

c9fe3caacc [Transform] Allow transform phpVersion() to withPhpVersion() on RectorConfigBuilderRector (#5678)
This commit is contained in:
Tomas Votruba 2024-03-03 01:03:16 +00:00
parent d31429d029
commit 6986e1fbdb
2 changed files with 7 additions and 2 deletions

View File

@ -149,6 +149,11 @@ CODE_SAMPLE
$hasChanged = \true;
continue;
}
if ($name === 'phpVersion') {
$newExpr = $this->nodeFactory->createMethodCall($newExpr, 'withPhpVersion', [$value]);
$hasChanged = \true;
continue;
}
// implementing method by method
return null;
}

View File

@ -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
*/