We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I feel Psalm should be able to figure this one out: https://psalm.dev/r/c47f94a631
The text was updated successfully, but these errors were encountered:
I found these snippets:
<?php abstract class AbstractPlatform { } abstract class PgPlatform extends AbstractPlatform { public function methodParentDoesNotHave(): void { } } abstract class AbstractTestCase { abstract public function createPlatform(): AbstractPlatform; } abstract class AbstractPostgresqlTestCase extends AbstractTestCase { abstract public function createPlatform(): PgPlatform; public function testFoo(): void { $this->createPlatform()->methodParentDoesNotHave(); } }
Psalm output (using commit e1c6fcc): ERROR: UndefinedMethod - 25:34 - Method AbstractPlatform::methodparentdoesnothave does not exist
Sorry, something went wrong.
aceaf6c
Thanks!
No branches or pull requests
I feel Psalm should be able to figure this one out: https://psalm.dev/r/c47f94a631
The text was updated successfully, but these errors were encountered: