summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-01-02 15:49:53 +0100
committerCôme Chilliet <come.chilliet@nextcloud.com>2023-01-02 15:49:53 +0100
commit6def1337924ecec09436d7650de70668f5612730 (patch)
tree41f68385343d54b79b110b675b34034502f0b3cf
parent602cc7260c2d3c83ae8f6502fa0cb27819cb7e78 (diff)
downloadnextcloud-server-6def1337924ecec09436d7650de70668f5612730.tar.gz
nextcloud-server-6def1337924ecec09436d7650de70668f5612730.zip
Remove null from quota type
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
-rw-r--r--lib/private/Files/Storage/Wrapper/Quota.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Storage/Wrapper/Quota.php b/lib/private/Files/Storage/Wrapper/Quota.php
index d6d0c107701..fcdce59f1ea 100644
--- a/lib/private/Files/Storage/Wrapper/Quota.php
+++ b/lib/private/Files/Storage/Wrapper/Quota.php
@@ -37,7 +37,7 @@ use OCP\Files\Cache\ICacheEntry;
use OCP\Files\Storage\IStorage;
class Quota extends Wrapper {
- /** @var int|float|null int on 64bits, float on 32bits for bigint */
+ /** @var int|float int on 64bits, float on 32bits for bigint */
protected $quota;
/**