Live blogging from SymfonyLive London 2019

This commit is contained in:
Oliver Davies 2019-09-13 11:36:47 +01:00
parent 0891c05cae
commit 33af187c37

View file

@ -220,4 +220,13 @@ Notifier
* Robust and failsafe by default
Streamable uploads - `$mimeParts->toIterable()`.
* Streamable uploads - `$mimeParts->toIterable()`.
* donwload a file
```php
foreach ($client->stream($response) as $chunk) {
// ...
}
```
- Responses are lazy, requests are concurrent