You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ use Icewind\SMB\ServerFactory;
7
7
use League\Flysystem\Filesystem;
8
8
use RobGridley\Flysystem\Smb\SmbAdapter;
9
9
10
-
$factory = new ServerFactory;
10
+
$factory = new ServerFactory();
11
11
$auth = new BasicAuth('username', 'domain/workgroup', 'password');
12
12
$server = $factory->createServer('host', $auth);
13
13
$share = $server->getShare('name');
@@ -19,3 +19,6 @@ $filesystem = new Filesystem(new SmbAdapter($share));
19
19
```
20
20
$ composer require robgridley/flysystem-smb
21
21
```
22
+
23
+
## Note
24
+
This adapter does not support visibility. Calls to `visibility()` or `setVisibility()` throw exceptions and setting visibility via writes, moves, etc. is ignored.
0 commit comments