Google\Cloud\BigQuery\BigQueryClient::job PHP Method

job() public method

Example: $job = $bigQuery->job('myJobId');
public job ( string $id ) : Job
$id string The id of the job to request.
return Job
    public function job($id)
    {
        return new Job($this->connection, $id, $this->projectId, [], $this->mapper);
    }