diff options
author | skjnldsv <skjnldsv@protonmail.com> | 2024-07-05 14:27:49 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-07-12 20:14:30 +0200 |
commit | 75ca4944c9e9a1b20bdb1e01f5acf59f2c77afe2 (patch) | |
tree | 76848e6508759a1045883e27bbd64ba669660747 /lib/public | |
parent | c253112cf77411ee374ea29a9566cdd28d3e544d (diff) | |
download | nextcloud-server-75ca4944c9e9a1b20bdb1e01f5acf59f2c77afe2.tar.gz nextcloud-server-75ca4944c9e9a1b20bdb1e01f5acf59f2c77afe2.zip |
feat(files_sharing): allow mixed values in share attributes and allow storing email arrays
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Share/IAttributes.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/Share/IAttributes.php b/lib/public/Share/IAttributes.php index af7277c39c0..7ad2765354f 100644 --- a/lib/public/Share/IAttributes.php +++ b/lib/public/Share/IAttributes.php @@ -17,7 +17,7 @@ interface IAttributes { * * @param string $scope scope * @param string $key key - * @param bool $enabled enabled + * @param bool|string|array|null $value value * @return IAttributes The modified object * @since 25.0.0 */ @@ -29,7 +29,7 @@ interface IAttributes { * * @param string $scope scope * @param string $key key - * @return bool|null + * @return bool|string|array|null * @since 25.0.0 */ public function getAttribute($scope, $key); |