You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?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
The text was updated successfully, but these errors were encountered:
Bug report
The code below does not finish on phpstan.org
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
Expected output
analysis completes
The text was updated successfully, but these errors were encountered: