deleteTable() public method

public deleteTable ( array $args = [] ) : array
$args array
return array
Example #1
0
 /**
  * Delete the table.
  *
  * Example:
  * ```
  * $table->delete();
  * ```
  *
  * @see https://cloud.google.com/bigquery/docs/reference/v2/tables/delete Tables delete API documentation.
  *
  * @param array $options [optional] Configuration options.
  */
 public function delete(array $options = [])
 {
     $this->connection->deleteTable($options + $this->identity);
 }