getTable() public method

public getTable ( array $args = [] ) : array
$args array
return array
Example #1
0
 /**
  * Triggers a network request to reload the table's details.
  *
  * Example:
  * ```
  * $table->reload();
  * $info = $table->info();
  * echo $info['friendlyName'];
  * ```
  *
  * @see https://cloud.google.com/bigquery/docs/reference/v2/tables/get Tables get API documentation.
  *
  * @param array $options [optional] Configuration options.
  * @return array
  */
 public function reload(array $options = [])
 {
     return $this->info = $this->connection->getTable($options + $this->identity);
 }