diff options
Diffstat (limited to 'lib/private/Lockdown/Filesystem/NullStorage.php')
-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'); } |