diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-10-18 12:49:34 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-10-18 17:21:47 +0200 |
commit | a5ea677370df4479cc309f4c359599590c24f278 (patch) | |
tree | cd861667f467b31ff58ecf39613507432eb83d35 /lib/private/Lockdown | |
parent | 732badf552c91733192e87d6ceb2848b4b75d439 (diff) | |
download | nextcloud-server-a5ea677370df4479cc309f4c359599590c24f278.tar.gz nextcloud-server-a5ea677370df4479cc309f4c359599590c24f278.zip |
Rename file1 and file2 to source and target in Storage abstraction
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'lib/private/Lockdown')
-rw-r--r-- | lib/private/Lockdown/Filesystem/NullStorage.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Lockdown/Filesystem/NullStorage.php b/lib/private/Lockdown/Filesystem/NullStorage.php index ac8c30418bd..8427a4658d4 100644 --- a/lib/private/Lockdown/Filesystem/NullStorage.php +++ b/lib/private/Lockdown/Filesystem/NullStorage.php @@ -113,11 +113,11 @@ class NullStorage extends Common { throw new \OC\ForbiddenException('This request is not allowed to access the filesystem'); } - public function rename($path1, $path2) { + public function rename($source, $target) { throw new \OC\ForbiddenException('This request is not allowed to access the filesystem'); } - public function copy($path1, $path2) { + public function copy($source, $target) { throw new \OC\ForbiddenException('This request is not allowed to access the filesystem'); } |