-
Notifications
You must be signed in to change notification settings - Fork 96
Adds stub file for PropertyPathInterface #124
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
Conversation
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.
X and Y were meant to be just placeholders, you should type what it's really iterating over.
X and Y were meant to be just placeholders, you should type what it's really iterating over.
yep, forgot to add @template
😅
Fixed
This will just cause another error when you typehint the interface. I suppose the iterated types are always the same, check out the implementations what's going on in them.
This will just cause another error when you typehint the interface. I suppose the iterated types are always the same, check out the implementations what's going on in them.
You're right, it showed implementations should be contravariant with parent errors.
From the implementations it looks like key is always integer and value is always string, fixed.
Thank you
Thank you!
No description provided.