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

__construct() public method

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