Google\Cloud\BigQuery\Dataset::table PHP Method

table() public method

Example: $table = $dataset->table('myTableId');
public table ( string $id ) : Dataset
$id string The id of the table to request.
return Dataset
    public function table($id)
    {
        return new Table($this->connection, $id, $this->identity['datasetId'], $this->identity['projectId']);
    }