aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private
diff options
context:
space:
mode:
authorCôme Chilliet <91878298+come-nc@users.noreply.github.com>2023-03-30 10:30:12 +0200
committerMichaIng <micha@dietpi.com>2023-04-01 14:20:25 +0200
commitda618c457a72814e65b7399b141db7e123091451 (patch)
tree6bc8c8c5a8f91752ed60d7949f2a2eae4876f844 /lib/private
parent3f84d41226e75597a90b2f11813b8298c506c947 (diff)
downloadnextcloud-server-da618c457a72814e65b7399b141db7e123091451.tar.gz
nextcloud-server-da618c457a72814e65b7399b141db7e123091451.zip
Fix quota typing for 32bits after forward port from 25
Signed-off-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Diffstat (limited to 'lib/private')
-rw-r--r--lib/private/Files/Storage/Wrapper/Quota.php4
-rwxr-xr-xlib/private/LargeFileHelper.php5
2 files changed, 4 insertions, 5 deletions
diff --git a/lib/private/Files/Storage/Wrapper/Quota.php b/lib/private/Files/Storage/Wrapper/Quota.php
index 5b702890675..cfb2c455a2c 100644
--- a/lib/private/Files/Storage/Wrapper/Quota.php
+++ b/lib/private/Files/Storage/Wrapper/Quota.php
@@ -42,7 +42,7 @@ class Quota extends Wrapper {
/** @var callable|null */
protected $quotaCallback;
/** @var int|float|null int on 64bits, float on 32bits for bigint */
- protected $quota;
+ protected int|float|null $quota;
protected string $sizeRoot;
private SystemConfig $config;
@@ -60,7 +60,7 @@ class Quota extends Wrapper {
/**
* @return int|float quota value
*/
- public function getQuota() {
+ public function getQuota(): int|float {
if ($this->quota === null) {
$quotaCallback = $this->quotaCallback;
if ($quotaCallback === null) {
diff --git a/lib/private/LargeFileHelper.php b/lib/private/LargeFileHelper.php
index 09bb959cdcf..c8d6ba42eb5 100755
--- a/lib/private/LargeFileHelper.php
+++ b/lib/private/LargeFileHelper.php
@@ -95,10 +95,9 @@ class LargeFileHelper {
*
* @param string $filename Path to the file.
*
- * @return int|float Number of bytes as number (float or int) or
- * null on failure.
+ * @return int|float Number of bytes as number (float or int)
*/
- public function getFileSize(string $filename): null|int|float {
+ public function getFileSize(string $filename): int|float {
$fileSize = $this->getFileSizeViaCurl($filename);
if (!is_null($fileSize)) {
return $fileSize;