Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. CallLike.php

function CallLike::getArgs

Assert that this is not a first-class callable and return only ordinary Args.

Return value

Arg[]

File

vendor/nikic/php-parser/lib/PhpParser/Node/Expr/CallLike.php, line 31

Class

CallLike

Namespace

PhpParser\Node\Expr

Code

public function getArgs() : array {
    assert(!$this->isFirstClassCallable());
    return $this->getRawArgs();
}
RSS feed
Powered by Drupal