Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/3rdparty/icewind/smb/src/ISystem.php')
-rw-r--r--apps/files_external/3rdparty/icewind/smb/src/ISystem.php34
1 files changed, 17 insertions, 17 deletions
diff --git a/apps/files_external/3rdparty/icewind/smb/src/ISystem.php b/apps/files_external/3rdparty/icewind/smb/src/ISystem.php
index 09994610716..6f06b8421c2 100644
--- a/apps/files_external/3rdparty/icewind/smb/src/ISystem.php
+++ b/apps/files_external/3rdparty/icewind/smb/src/ISystem.php
@@ -32,47 +32,47 @@ interface ISystem {
* @param int $num the file descriptor id
* @return string
*/
- public function getFD($num);
+ public function getFD(int $num): string;
/**
- * Get the full path to the `smbclient` binary of false if the binary is not available
+ * Get the full path to the `smbclient` binary of null if the binary is not available
*
- * @return string|bool
+ * @return string|null
*/
- public function getSmbclientPath();
+ public function getSmbclientPath(): ?string;
/**
- * Get the full path to the `net` binary of false if the binary is not available
+ * Get the full path to the `net` binary of null if the binary is not available
*
- * @return string|bool
+ * @return string|null
*/
- public function getNetPath();
+ public function getNetPath(): ?string;
/**
- * Get the full path to the `smbcacls` binary of false if the binary is not available
+ * Get the full path to the `smbcacls` binary of null if the binary is not available
*
- * @return string|bool
+ * @return string|null
*/
- public function getSmbcAclsPath();
+ public function getSmbcAclsPath(): ?string;
/**
- * Get the full path to the `stdbuf` binary of false if the binary is not available
+ * Get the full path to the `stdbuf` binary of null if the binary is not available
*
- * @return string|bool
+ * @return string|null
*/
- public function getStdBufPath();
+ public function getStdBufPath(): ?string;
/**
- * Get the full path to the `date` binary of false if the binary is not available
+ * Get the full path to the `date` binary of null if the binary is not available
*
- * @return string|bool
+ * @return string|null
*/
- public function getDatePath();
+ public function getDatePath(): ?string;
/**
* Whether or not the smbclient php extension is enabled
*
* @return bool
*/
- public function libSmbclientAvailable();
+ public function libSmbclientAvailable(): bool;
}