aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/3rdparty/icewind/smb/src/IAuth.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/3rdparty/icewind/smb/src/IAuth.php')
-rw-r--r--apps/files_external/3rdparty/icewind/smb/src/IAuth.php29
1 files changed, 0 insertions, 29 deletions
diff --git a/apps/files_external/3rdparty/icewind/smb/src/IAuth.php b/apps/files_external/3rdparty/icewind/smb/src/IAuth.php
deleted file mode 100644
index 46ba4b81b18..00000000000
--- a/apps/files_external/3rdparty/icewind/smb/src/IAuth.php
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php
-/**
- * SPDX-FileCopyrightText: 2018 Robin Appelman <robin@icewind.nl>
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
-
-namespace Icewind\SMB;
-
-interface IAuth {
- public function getUsername(): ?string;
-
- public function getWorkgroup(): ?string;
-
- public function getPassword(): ?string;
-
- /**
- * Any extra command line option for smbclient that are required
- *
- * @return string
- */
- public function getExtraCommandLineArguments(): string;
-
- /**
- * Set any extra options for libsmbclient that are required
- *
- * @param resource $smbClientState
- */
- public function setExtraSmbClientOptions($smbClientState): void;
-}