diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-01-02 15:49:53 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-01-02 15:49:53 +0100 |
commit | 6def1337924ecec09436d7650de70668f5612730 (patch) | |
tree | 41f68385343d54b79b110b675b34034502f0b3cf | |
parent | 602cc7260c2d3c83ae8f6502fa0cb27819cb7e78 (diff) | |
download | nextcloud-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.php | 2 |
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; /** |