-
Notifications
You must be signed in to change notification settings - Fork 677
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
Regression in psalm 5.10.0 on enum types #9824
Comments
I found these snippets: https://psalm.dev/r/5fe87722dd<?php
enum Bar: string {
case A = "a";
case B = "b";
public const STR = self::A->value . self::B->value;
}
class Foo {
public const CONCAT_STR = "a" . Bar::STR . "e";
}
|
lstrojny
added a commit
to lstrojny/uffff
that referenced
this issue
May 26, 2023
Will check on that sunday / monday |
ygottschalk
added a commit
to ygottschalk/psalm
that referenced
this issue
May 28, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This example worked with 5.9.0 but does not starting with 5.10.0: https://psalm.dev/r/5fe87722dd
The text was updated successfully, but these errors were encountered: