PHPCfg\Op\Expr\FuncCall::__construct PHP Method

__construct() public method

public __construct ( Operand $name, array $args, array $attributes = [] )
$name PHPCfg\Operand
$args array
$attributes array
    public function __construct(Operand $name, array $args, array $attributes = [])
    {
        parent::__construct($attributes);
        $this->name = $this->addReadRef($name);
        $this->args = $this->addReadRef($args);
    }