pocketmine\nbt\tag\ListTag::getValue PHP Method

getValue() public method

public getValue ( )
    public function &getValue()
    {
        $value = [];
        foreach ($this as $k => $v) {
            if ($v instanceof Tag) {
                $value[$k] = $v;
            }
        }
        return $value;
    }