PHPCfg\Op\Expr\NsFuncCall::__construct PHP Метод

__construct() публичный Метод

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