JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "InsecureRequestBuilder.php"

Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/gax/src/InsecureRequestBuilder.php
File size: 649 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Google\ApiCore;

use GuzzleHttp\Psr7\Utils;
use Psr\Http\Message\UriInterface;

/**
 * @internal
 */
class InsecureRequestBuilder extends RequestBuilder
{
    /**
     * @param string $path
     * @param array $queryParams
     * @return UriInterface
     */
    protected function buildUri(string $path, array $queryParams)
    {
        $uri = Utils::uriFor(sprintf(
            'http://%s%s',
            $this->baseUri,
            $path
        ));
        if ($queryParams) {
            $uri = $this->buildUriWithQuery(
                $uri,
                $queryParams
            );
        }
        return $uri;
    }
}