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
When using first class callable syntax, a warning is thrown:
Psy Shell v0.12.4 (PHP 8.3.13 — cli) by Justin Hileman New version is available at psysh.org/psysh (current: v0.12.4, latest: v0.12.7) > $arr = ['1', '2', '3']; = [ "1", "2", "3", ] > var_dump(array_map(intval(...), $arr)); PHP Warning: Undefined property: PhpParser\Node\VariadicPlaceholder::$name in .../vendor/psy/psysh/src/CodeCleaner/PassableByReferencePass.php on line 64 Warning: Undefined property: PhpParser\Node\VariadicPlaceholder::$name in ...vendor/psy/psysh/src/CodeCleaner/PassableByReferencePass.php on line 64 array(3) { [0]=> int(1) [1]=> int(2) [2]=> int(3) } = null
The text was updated successfully, but these errors were encountered:
Possibly related to #695
Sorry, something went wrong.
No branches or pull requests
When using first class callable syntax, a warning is thrown:
The text was updated successfully, but these errors were encountered: