-
-
Notifications
You must be signed in to change notification settings - Fork 913
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
New strange error "Cannot call method getInputHtml() on class-string|object." #4579
Comments
This bug report is missing a link to reproduction on phpstan.org. It will most likely be closed after manual review. |
Well if transformation_plugin is string you cannot call methods on it by - >, but it will pass the method_exists check if that string contains name of class with given method. |
|
Hmm yes this is strange why it thinks it could be class-string in the first place. |
See: phpstan/phpstan#4579 Signed-off-by: William Desportes <[email protected]>
The main problem is that this should be The rule you're bumping into is that But in your case the first argument should be |
Fixed: phpstan/phpstan-src@70756b0 |
[ci skip] Ref: phpstan/phpstan#4579 Signed-off-by: William Desportes <[email protected]>
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Bug report
Strange new error since .78 version
And the code checks
if (method_exists($transformation_plugin, 'getInputHtml')) {
so for me it can not be aclass-string
at this point 🤔Code snippet that reproduces the problem
https://github.com/phpmyadmin/phpmyadmin/blob/58c4f3fe16f17400436946be9a82b5811439107b/libraries/classes/InsertEdit.php#L3444
https://github.com/phpmyadmin/phpmyadmin/blob/58c4f3fe16f17400436946be9a82b5811439107b/libraries/classes/InsertEdit.php#L3459
Expected output
no errors
Actual output
The text was updated successfully, but these errors were encountered: