Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove quota value type for 32-bit systems
Signed-off-by: Vincent Petry <[email protected]>
  • Loading branch information
PVince81 authored and come-nc committed Dec 19, 2022
commit e0f6f7e6ac9fbb956318c47e2b173fbafa7347c0
4 changes: 2 additions & 2 deletions lib/private/Files/Storage/Wrapper/Quota.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ public function __construct($parameters) {
}

/**
* @return int quota value
* @return quota value
*/
public function getQuota(): int {
public function getQuota() {
if ($this->quota === null) {
$quotaCallback = $this->quotaCallback;
if ($quotaCallback === null) {
Expand Down