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

phpstan.org is crashing #6442

Closed
mvorisek opened this issue Jan 22, 2022 · 2 comments · Fixed by phpstan/phpstan-src#946
Closed

phpstan.org is crashing #6442

mvorisek opened this issue Jan 22, 2022 · 2 comments · Fixed by phpstan/phpstan-src#946

Comments

@mvorisek
Copy link
Contributor

Bug report

The code below does not finish on phpstan.org

image

I hit this issue when trying to reproduce phpstan/phpstan-deprecation-rules#52 on phpstan.org.

https://3v4l.org/TeeAc confirms the code is valid

Code snippet that reproduces the problem

<?php declare(strict_types = 1);

trait T
{
    public function x(): void
	{
		\PHPStan\dumpType(parent::class);
	}
}

class A {}

class B extends A
{
	use T;
}

new class() extends B
{
	use T;
};

Expected output

analysis completes

@mergeable
Copy link

mergeable bot commented Jan 22, 2022

This bug report is missing a link to reproduction on phpstan.org.

It will most likely be closed after manual review.

@github-actions
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 Feb 28, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant