mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
23 lines
459 B
PHP
23 lines
459 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node\Expr;
|
|
|
|
use PhpParser\Node\Arg;
|
|
use PhpParser\Node\Expr;
|
|
use PhpParser\Node\VariadicPlaceholder;
|
|
|
|
abstract class CallLike extends Expr {
|
|
/**
|
|
* @return list<Arg|VariadicPlaceholder>
|
|
*/
|
|
abstract public function getRawArgs(): array;
|
|
|
|
public function isFirstClassCallable(): bool {}
|
|
|
|
/**
|
|
* @psalm-pure
|
|
* @return list<Arg>
|
|
*/
|
|
public function getArgs(): array{}
|
|
}
|