Google\Cloud\ServiceBuilder::bigQuery PHP Method

bigQuery() public method

Example: $bigQuery = $cloud->bigQuery();
public bigQuery ( array $config = [] ) : BigQueryClient
$config array [optional] { Configuration options. See {@see \Google\Cloud\ServiceBuilder::__construct()} for the other available options. @type bool $returnInt64AsObject If true, 64 bit integers will be returned as a {@see \Google\Cloud\Int64} object for 32 bit platform compatibility. **Defaults to** false.
return Google\Cloud\BigQuery\BigQueryClient
    public function bigQuery(array $config = [])
    {
        return new BigQueryClient($config ? $this->resolveConfig($config) : $this->config);
    }