Update responses.md

added streamed downloads missing semicolon
This commit is contained in:
ECO 2018-03-06 08:19:57 +08:00 committed by GitHub
parent 85411b61db
commit 1988784d15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ Sometimes you may wish to turn the string response of a given operation into a d
return response()->streamDownload(function () {
echo GitHub::api('repo')
->contents()
->readme('laravel', 'laravel')['contents']
->readme('laravel', 'laravel')['contents'];
}, 'laravel-readme.md');
<a name="file-responses"></a>