Updated Rector to commit 4e2c77250209768b0d7308552ef9449205801fb6

4e2c772502 [Arguments] Handle crash on first class callable on ArgumentAdderRector (#6530)
This commit is contained in:
Tomas Votruba 2024-12-06 11:05:39 +00:00
parent 68bbafffd8
commit cb864b4bab
2 changed files with 5 additions and 2 deletions

View File

@ -296,6 +296,9 @@ CODE_SAMPLE
*/
private function refactorCall($call) : void
{
if ($call->isFirstClassCallable()) {
return;
}
$callName = $this->getName($call->name);
if ($callName === null) {
return;

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'b5859be5c0af9089cc6fd2b007c24163db198334';
public const PACKAGE_VERSION = '4e2c77250209768b0d7308552ef9449205801fb6';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-12-05 10:00:50';
public const RELEASE_DATE = '2024-12-06 18:03:21';
/**
* @var int
*/