diff --git a/source/_posts/2019-09-13-live-blogging-symfonylive-london.md b/source/_posts/2019-09-13-live-blogging-symfonylive-london.md index fd660cda..534f74d1 100644 --- a/source/_posts/2019-09-13-live-blogging-symfonylive-london.md +++ b/source/_posts/2019-09-13-live-blogging-symfonylive-london.md @@ -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