fixing PHP documentation

This commit is contained in:
Julien Neuhart
2019-01-28 15:36:59 +01:00
parent 25f7ba3ee6
commit 19f51fdc1f
5 changed files with 10 additions and 10 deletions

View File

@@ -52,5 +52,5 @@ $client = new Client('http://localhost:3000', new \Http\Adapter\Guzzle6\Client()
$request = new URLRequest('https://google.com');
$request->setMargins(Request::NO_MARGINS);
$dest = "result.pdf";
$filename = $client->store($request, $dest);
$client->store($request, $dest);
```