From a3a1077dea5d79b75c59083c9490b02c8aefb13f Mon Sep 17 00:00:00 2001 From: Alan Poulain Date: Fri, 15 Nov 2019 15:22:40 +0100 Subject: [PATCH] Return of store method is void --- docs/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.html b/docs/index.html index c54e5852..f96d7d0c 100755 --- a/docs/index.html +++ b/docs/index.html @@ -442,7 +442,7 @@ $client = new Client('http://localhost:3000', new \Http\Adapter\Guzzle6\ $index = DocumentFactory::makeFromPath('index.html', 'index.html'); $request = new HTMLRequest($index); $dest = "result.pdf"; -$filename = $client->store($request, $dest); +$client->store($request, $dest);