Skip to content

Commit

Permalink
Updated Rector to commit 0efbe133dbbeb1f4d9335680bfb54f391f9533d1
Browse files Browse the repository at this point in the history
rectorphp/rector-src@0efbe13 [CodingStyle] Handle crash on pass args on CallUserFuncToMethodCallRector (#6598)
  • Loading branch information
TomasVotruba committed Dec 17, 2024
1 parent 79d71b7 commit 22cf34f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public function refactor(Node $node) : ?Node
}
$originalArgs = $node->args;
unset($originalArgs[0]);
$methodCall->args = $originalArgs;
$methodCall->args = \array_values($originalArgs);
return $methodCall;
}
}
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 = '654d5a27cd83fc1bd5abc807fbf3e9d1d0ab60b5';
public const PACKAGE_VERSION = '0efbe133dbbeb1f4d9335680bfb54f391f9533d1';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-12-17 01:26:03';
public const RELEASE_DATE = '2024-12-17 18:56:04';
/**
* @var int
*/
Expand Down

0 comments on commit 22cf34f

Please sign in to comment.