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

Readonly class compatibility #10789

Closed
JanTvrdik opened this issue Mar 26, 2024 · 2 comments
Closed

Readonly class compatibility #10789

JanTvrdik opened this issue Mar 26, 2024 · 2 comments

Comments

@JanTvrdik
Copy link
Contributor

Feature request

PHPStan currently does not report error, when readonly class extends non-readonly class and vice-versa, which is not allowed by PHP.

readonly class A
{
}

class B extends A // Non-readonly class B cannot extend readonly class A
{
}
class A
{
}

readonly class B extends A // Readonly class B cannot extend non-readonly class A
{
}

Did PHPStan help you today? Did it make you happy in any way?

No response

@ondrejmirtes
Copy link
Member

Implemented: phpstan/phpstan-src@986cbdf

Copy link

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.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Apr 27, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants