From df9fa360a41d4c0d763bc94205d49dec6b367a73 Mon Sep 17 00:00:00 2001 From: regiszanandrea Date: Fri, 9 Feb 2018 20:07:20 -0200 Subject: [PATCH] Update documentation --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 917d5c2..bb9fb43 100644 --- a/README.md +++ b/README.md @@ -106,5 +106,9 @@ $disk->move('old/file1.jpg', 'new/file1.jpg'); // get url to file $url = $disk->url('folder/my_file.txt'); +// Set the visibility of file to public +$disk->setVisibility('folder/my_file.txt', 'public'); + + // See https://laravel.com/docs/5.3/filesystem for full list of available functionality ```