mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-02 17:28:27 +01:00
33 lines
857 B
PHP
33 lines
857 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Expr;
|
|
|
|
use PhpParser\Node\Arg;
|
|
use PhpParser\Node\Expr;
|
|
|
|
/**
|
|
* @property Expr $var Variable holding object
|
|
* @property string|Expr $name Method name
|
|
* @property Arg[] $args Arguments
|
|
*/
|
|
class MethodCall extends Expr
|
|
{
|
|
/**
|
|
* Constructs a function call node.
|
|
*
|
|
* @param Expr $var Variable holding object
|
|
* @param string|Expr $name Method name
|
|
* @param Arg[] $args Arguments
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct(Expr $var, $name, array $args = array(), array $attributes = array()) {
|
|
parent::__construct(
|
|
array(
|
|
'var' => $var,
|
|
'name' => $name,
|
|
'args' => $args
|
|
),
|
|
$attributes
|
|
);
|
|
}
|
|
} |