Skip to content
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

[Transform] Fixes for ArrayDimFetchToMethodCallRector #5727

Merged
merged 1 commit into from
Mar 16, 2024

Conversation

peterfox
Copy link
Contributor

Fixes for rule introduced in #5723 per @samsonasik feedback

@samsonasik samsonasik merged commit d9b64c7 into rectorphp:main Mar 16, 2024
39 checks passed
@samsonasik
Copy link
Member

Thank you @peterfox


foreach ($this->arrayDimFetchToMethodCalls as $arrayDimFetchToMethodCall) {
if (! $this->isObjectType($node->var, new ObjectType($arrayDimFetchToMethodCall->getClass()))) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@peterfox this can be improved, by move new ObjectType() in the configuration itself, so just call instead of re-create object, eg:

-new ArrayDimFetchToMethodCall('SomeClass', 'make')
+new ArrayDimFetchToMethodCall(new ObjectType('SomeClass'), 'make')

so only define ObjectType() once in the config ;), like what ArgumentAdderRector do:

new ArgumentAdder(
'SomeExampleClass',
'someMethod',
0,
'someArgument',
true,
new ObjectType('SomeType')
),

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants