-
Notifications
You must be signed in to change notification settings - Fork 23
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
Upgrade phpstan #194
Upgrade phpstan #194
Conversation
They should have been removed in 655bd01
This closure is supposed to return a string, not an integer.
bcbf5ae
to
79c3eec
Compare
public function getParseQueue(): ParseQueue | ||
{ | ||
if ($this->parseQueue === null) { | ||
throw new LogicException('The ParseQueue is not set until after the build is complete'); | ||
} | ||
|
||
return $this->parseQueue; | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing a public method from a patch version? What's the connection to PHPStan?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
parseQueue
is never ever written to, the class is final and that property private, and that method is unused. It should have been removed in 655bd01
No description provided.