Microweber\Utils\Adapters\Http\Guzzle::get PHP Method

get() public method

public get ( )
    public function get()
    {
        $client = new Client();
        $response = $client->get($this->url, ['timeout' => $this->timeout, 'verify' => __DIR__ . DS . 'cacert.pem.txt']);
        $body = $response->getBody();
        $r = '';
        if (is_object($body) and method_exists($body, 'eof')) {
            while (!$body->eof()) {
                $r .= $body->read(1024);
            }
        } else {
            return $body;
        }
        return $r;
    }