SevenShores\Hubspot\Http\Response::getDataFromResponse PHP Method

getDataFromResponse() private method

private getDataFromResponse ( Psr\Http\Message\ResponseInterface $response ) : mixed
$response Psr\Http\Message\ResponseInterface
return mixed
    private function getDataFromResponse(ResponseInterface $response)
    {
        $contents = $response->getBody()->getContents();
        return $contents ? json_decode($contents) : null;
    }