function CallLike::getRawArgs
Return raw arguments, which may be actual Args, or VariadicPlaceholders for first-class callables.
Return value
array<Arg|VariadicPlaceholder>
2 calls to CallLike::getRawArgs()
- CallLike::getArgs in vendor/
nikic/ php-parser/ lib/ PhpParser/ Node/ Expr/ CallLike.php - Assert that this is not a first-class callable and return only ordinary Args.
- CallLike::isFirstClassCallable in vendor/
nikic/ php-parser/ lib/ PhpParser/ Node/ Expr/ CallLike.php - Returns whether this call expression is actually a first class callable.
5 methods override CallLike::getRawArgs()
- FuncCall::getRawArgs in vendor/
nikic/ php-parser/ lib/ PhpParser/ Node/ Expr/ FuncCall.php - Return raw arguments, which may be actual Args, or VariadicPlaceholders for first-class callables.
- MethodCall::getRawArgs in vendor/
nikic/ php-parser/ lib/ PhpParser/ Node/ Expr/ MethodCall.php - Return raw arguments, which may be actual Args, or VariadicPlaceholders for first-class callables.
- New_::getRawArgs in vendor/
nikic/ php-parser/ lib/ PhpParser/ Node/ Expr/ New_.php - Return raw arguments, which may be actual Args, or VariadicPlaceholders for first-class callables.
- NullsafeMethodCall::getRawArgs in vendor/
nikic/ php-parser/ lib/ PhpParser/ Node/ Expr/ NullsafeMethodCall.php - Return raw arguments, which may be actual Args, or VariadicPlaceholders for first-class callables.
- StaticCall::getRawArgs in vendor/
nikic/ php-parser/ lib/ PhpParser/ Node/ Expr/ StaticCall.php - Return raw arguments, which may be actual Args, or VariadicPlaceholders for first-class callables.
File
-
vendor/
nikic/ php-parser/ lib/ PhpParser/ Node/ Expr/ CallLike.php, line 16
Class
Namespace
PhpParser\Node\ExprCode
public abstract function getRawArgs() : array;