pocketmine\nbt\tag\IntArrayTag::__toString PHP Method

__toString() public method

public __toString ( )
    public function __toString()
    {
        $str = get_class($this) . "{\n";
        $str .= implode(", ", $this->value);
        return $str . "}";
    }