History log of /PHP-Parser/lib/PhpParser/Node/Expr/CallLike.php (Results 1 – 3 of 3)
Revision Date Author Comments
# eaa1d91b 25-Jun-2023 Abdul Malik Ikhsan

Early return false after VariadicPlaceholder check on CallLike::isFirstClassCallable() (#924)

VariadicPlaceholder can only occur as the first (and only) argument, so avoid a loop to check fo

Early return false after VariadicPlaceholder check on CallLike::isFirstClassCallable() (#924)

VariadicPlaceholder can only occur as the first (and only) argument, so avoid a loop to check for it.

show more ...


# de4ac930 04-Jul-2022 MathiasReker

Single blank line at eof

A PHP file without end tag must always end with a single empty line feed.


# a45fb2a6 12-Sep-2021 Nikita Popov

Add CallLike parent class

This provides a helper to determine whether a call is a first-class
callable, and a way to strip the args type to Arg[] if it isn't.