diff options
author | Louis Chemineau <louis@chmn.me> | 2022-01-26 10:47:16 +0100 |
---|---|---|
committer | Louis Chemineau <louis@chmn.me> | 2022-01-26 10:47:16 +0100 |
commit | 62200427887dcbd0a5a4ff04490722e71baa6e36 (patch) | |
tree | 9da22145140f8495bbdfa4e726bea07fd89fa0c2 /apps/files_external | |
parent | 936f9dc596f9fe49ab1a9de0642ecb3983a4b2e6 (diff) | |
download | nextcloud-server-62200427887dcbd0a5a4ff04490722e71baa6e36.tar.gz nextcloud-server-62200427887dcbd0a5a4ff04490722e71baa6e36.zip |
Fix php:cs
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/lib/Lib/Backend/SMB.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/Lib/Backend/SMB.php b/apps/files_external/lib/Lib/Backend/SMB.php index 70eaa206483..bf73c5b40f8 100644 --- a/apps/files_external/lib/Lib/Backend/SMB.php +++ b/apps/files_external/lib/Lib/Backend/SMB.php @@ -112,7 +112,7 @@ class SMB extends Backend { $username = $user; $workgroup = $realm; } else { - $username = $matches[1];; + $username = $matches[1]; $workgroup = $matches[2]; } $smbAuth = new BasicAuth( |