PHPCfg\Op\Terminal\Const_::__construct PHP Method

__construct() public method

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