Icicle\Http\Client\CookieJar::fromResponse PHP Method

fromResponse() public static method

public static fromResponse ( Response $response ) : CookieJar
$response Response
return CookieJar
    public static function fromResponse(Response $response)
    {
        $jar = new self();
        $jar->addFromResponse($response);
        return $jar;
    }