fileOptions
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-01-12 13:04:17 +00:00
parent 4ca5d048d9
commit 345e6a0c51
4 changed files with 31 additions and 9 deletions
+7
View File
@@ -64,3 +64,10 @@ Get html form
```php
$form = $client->htmlForm();
```
Rename files inside zip
```php
$file = (new FileRequest('http://example.com/image.png'))
->fileOptions([
'name' => 'my-new-name.png'
]);
```