TheIconic\Tracking\GoogleAnalytics\Network\HttpClient::getClient PHP Method

getClient() private method

Gets HTTP client for internal class use.
private getClient ( ) : Client
return GuzzleHttp\Client
    private function getClient()
    {
        if ($this->client === null) {
            // @codeCoverageIgnoreStart
            $this->setClient(new Client());
        }
        // @codeCoverageIgnoreEnd
        return $this->client;
    }