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

__construct() public method

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