diff options
author | jld3103 <jld3103yt@gmail.com> | 2023-04-03 08:29:33 +0200 |
---|---|---|
committer | jld3103 <jld3103yt@gmail.com> | 2023-04-03 08:29:33 +0200 |
commit | dcf6ebebaba199b310365d8b64438569e76ebd4b (patch) | |
tree | cacccd35ef45c0e223c1ea4f3ae1aec0574b3b5b /lib/private/Files/Node | |
parent | 7ef9ef3cb44f42f5945696766cba1f9f863a9f50 (diff) | |
download | nextcloud-server-dcf6ebebaba199b310365d8b64438569e76ebd4b.tar.gz nextcloud-server-dcf6ebebaba199b310365d8b64438569e76ebd4b.zip |
Fix inherited parameter names
Signed-off-by: jld3103 <jld3103yt@gmail.com>
Diffstat (limited to 'lib/private/Files/Node')
-rw-r--r-- | lib/private/Files/Node/NonExistingFile.php | 2 | ||||
-rw-r--r-- | lib/private/Files/Node/NonExistingFolder.php | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/Files/Node/NonExistingFile.php b/lib/private/Files/Node/NonExistingFile.php index b21a2a6c65b..f42f2e33b72 100644 --- a/lib/private/Files/Node/NonExistingFile.php +++ b/lib/private/Files/Node/NonExistingFile.php @@ -37,7 +37,7 @@ class NonExistingFile extends File { throw new NotFoundException(); } - public function copy($newPath) { + public function copy($targetPath) { throw new NotFoundException(); } diff --git a/lib/private/Files/Node/NonExistingFolder.php b/lib/private/Files/Node/NonExistingFolder.php index 100687c3e6f..0d573df7727 100644 --- a/lib/private/Files/Node/NonExistingFolder.php +++ b/lib/private/Files/Node/NonExistingFolder.php @@ -38,7 +38,7 @@ class NonExistingFolder extends Folder { throw new NotFoundException(); } - public function copy($newPath) { + public function copy($targetPath) { throw new NotFoundException(); } @@ -142,11 +142,11 @@ class NonExistingFolder extends Folder { throw new NotFoundException(); } - public function search($pattern) { + public function search($query) { throw new NotFoundException(); } - public function searchByMime($mime) { + public function searchByMime($mimetype) { throw new NotFoundException(); } |