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

refactor: call getPrivateMethodInvoker() statically #9490

Merged

Conversation

paulbalandan
Copy link
Member

Description
I am developing a new phpstan extension for ReflectionHelper::getPrivateMethodInvoker() to give a precise Closure return type instead of just Closure(mixed...): mixed) return. To achieve this, I created a DynamicStaticMethodReturnTypeExtension since the method is static.

Now, the extension is working well pre-testing. The only setback I faced is that here in the repo we use the dynamic call instead of static call. This makes the extension useless as PHPStan does not call it anymore since the call is, well, dynamic. To fix this, I might just need to replicate the extension in a DynamicMethodReturnTypeExtension to handle dynamic calls, but that is not very DRY. So, I just opted to fix the calls here to static, as they should have been.

P.S. The amount of characters typed decreased by 1: $this-> to self:: 😂

Checklist:

  • Securely signed commits
  • Component(s) with PHPDoc blocks, only if necessary or adds value
  • Unit testing, with >80% coverage
  • User guide updated
  • Conforms to style guide

@paulbalandan paulbalandan added the testing Pull requests that changes tests only label Mar 14, 2025
@neznaika0
Copy link
Contributor

neznaika0 commented Mar 14, 2025

I think this is acceptable and necessary. It would be possible to fix the remaining static calls (for properties).

Do you want to be surprised? All statements are static too) self::assertTrue() There is a rector rule for checking this ThisCallOnStaticMethodToStaticCallRector or something similar.

@paulbalandan
Copy link
Member Author

Well, I'm not surprised as I am using php-cs-fixer's php_unit_test_case_static_method_calls in my libraries. While there's no harm in calling static methods dynamically, I think we should be calling a method by how it was designed.

@paulbalandan
Copy link
Member Author

PR added in phpstan-codeigniter: CodeIgniter/phpstan-codeigniter#35

Copy link
Member

@michalsn michalsn left a comment

Choose a reason for hiding this comment

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

I'm okay with this as it improves return types handling, but only as long as there is no plan to change other calls to static in the future (I don't want this to be taken as a precedent).

@paulbalandan paulbalandan merged commit 0611c35 into codeigniter4:develop Mar 15, 2025
48 checks passed
@paulbalandan paulbalandan deleted the static-getPrivateMethodInvoker branch March 15, 2025 15:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
testing Pull requests that changes tests only
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants