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

False positive: Accessing static property on a trait #5143

Closed
filip-t opened this issue Jun 7, 2021 · 2 comments
Closed

False positive: Accessing static property on a trait #5143

filip-t opened this issue Jun 7, 2021 · 2 comments

Comments

@filip-t
Copy link

filip-t commented Jun 7, 2021

Bug report

Accessing a static property on a trait is flagged as an error.

Code snippet that reproduces the problem

<?php declare(strict_types = 1);

trait Foo
{
	public static $property = 0;
}

function Bar (): void
{
	$var = Foo::$property;
}

https://phpstan.org/r/fdd4b045-1a07-4b8a-b227-823151a7b283

Expected output

It should not be flagged.

Related to:

#4107

@ondrejmirtes
Copy link
Member

Fixed: phpstan/phpstan-src@688a87f

@github-actions
Copy link

github-actions bot commented Jul 9, 2021

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 Jul 9, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants