We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
All methods require iterable, however array is in the annotation.
More information in comments at this commit: 4fd15cd
The text was updated successfully, but these errors were encountered:
As the pseudo-type iterable is only available in PHP 7.1+, what would you recommend for PHP 7.0 support?
My guess would be mixed[]|Traversable.
mixed[]|Traversable
Sorry, something went wrong.
That unfortunatelly does not say much.
I would prefer for string[] replace with string[]|Traversable<mixed,string>. As:
string[]
string[]|Traversable<mixed,string>
array<mixed,string>|Traversable<mixed,string>
Traversable<mixed,string>
If you want to make a PR, the work is in the documentation generator. Happy to review it.
No branches or pull requests
All methods require iterable, however array is in the annotation.
More information in comments at this commit: 4fd15cd
The text was updated successfully, but these errors were encountered: