-
-
Notifications
You must be signed in to change notification settings - Fork 384
[parallel] bump default threads from 16 to 32 to keep up with modern technology #6877
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -190,7 +190,7 @@ final public function enterNode(Node $node): int|Node|null | |||
* Replacing nodes in leaveNode() method avoids infinite recursion | |||
* see"infinite recursion" in https://github.com/nikic/PHP-Parser/blob/master/doc/component/Walking_the_AST.markdown | |||
*/ | |||
public function leaveNode(Node $node): array|int|Node|null | |||
final public function leaveNode(Node $node): array|int|Node|null |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems bc break
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On purpose, this should have never been allowed.
I will check the rector-downgrade-php unit test error, it possibly due to latest phpstan |
Thanks 👍 PHPStan x.14 now returns |
It seems due to this change phpstan/phpstan-src@3854cbc It seems the only way we can do is just follow it since it not error when set as magic https://3v4l.org/IrE2q#v7.4.33 I will update the fixture. |
I restarted the CI, seems green now 👍 |
@TomasVotruba rebase is needed 👍 |
…technology, alligned with phpstan setup
…g mechanism in child classes
Thanks 👍 |
->withImportNames(removeUnusedImports: true) | ||
->withImportNames() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems you were testing speed? I think this can be re-enabled again, it already fast on rector-src, and this also enabled in other rector-* packages rector.php.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought the removeUnusedImports: true
is enabled by default.
I think we should enable it, so default behavior is the one with least work. What do you think?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
imo, current optional implementation already correct, it should be optional, as it "remove things" that can possibly there on purpose.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see, I'll restore it here then.
No description provided.