Basho\Riak\Command\Builder\TimeSeries\DescribeTable::withTable PHP Method

withTable() public method

Which table do you want to describe?
public withTable ( $table )
$table
    public function withTable($table)
    {
        if ($table) {
            $this->query = "DESCRIBE {$table}";
        }
        return $this;
    }
DescribeTable