mirror of
https://github.com/nextcloud/server.git
synced 2026-02-19 02:38:40 -05:00
Remove quota value type for 32-bit systems
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
This commit is contained in:
parent
701cc1eaba
commit
c6b683342e
1 changed files with 2 additions and 2 deletions
|
|
@ -57,9 +57,9 @@ class Quota extends Wrapper {
|
|||
}
|
||||
|
||||
/**
|
||||
* @return int quota value
|
||||
* @return quota value
|
||||
*/
|
||||
public function getQuota(): int {
|
||||
public function getQuota() {
|
||||
if ($this->quota === null) {
|
||||
$quotaCallback = $this->quotaCallback;
|
||||
if ($quotaCallback === null) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue