aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-02-06 22:05:34 +0100
committerCôme Chilliet <come.chilliet@nextcloud.com>2023-02-07 11:23:35 +0100
commit308fcf452693e9b2d6902864c30bcd19afbbbb5f (patch)
tree131aca5be0684d8bca821b7c6d00303a8238f0b4 /apps
parent09a97ad39ce487bb7ee5cf9a79b24ca4b4f7bdaa (diff)
downloadnextcloud-server-308fcf452693e9b2d6902864c30bcd19afbbbb5f.tar.gz
nextcloud-server-308fcf452693e9b2d6902864c30bcd19afbbbb5f.zip
Respect OCP interface in private classes
Because the parameter type was moved to phpdoc it needs to be removed from implementations Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/files_external/lib/Lib/Storage/FTP.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/Lib/Storage/FTP.php b/apps/files_external/lib/Lib/Storage/FTP.php
index 4a6a0a3a011..ae02f37b575 100644
--- a/apps/files_external/lib/Lib/Storage/FTP.php
+++ b/apps/files_external/lib/Lib/Storage/FTP.php
@@ -140,7 +140,7 @@ class FTP extends Common {
}
}
- public function filesize(string $path): false|int|float {
+ public function filesize($path): false|int|float {
$result = $this->getConnection()->size($this->buildPath($path));
if ($result === -1) {
return false;