mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
Remove useless coalescing operator on non-null return value
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
parent
da618c457a
commit
8104d9f5d8
1 changed files with 1 additions and 1 deletions
|
|
@ -249,7 +249,7 @@ class Local extends \OC\Files\Storage\Common {
|
|||
$fullPath = $this->getSourcePath($path);
|
||||
if (PHP_INT_SIZE === 4) {
|
||||
$helper = new \OC\LargeFileHelper;
|
||||
return $helper->getFileSize($fullPath) ?? false;
|
||||
return $helper->getFileSize($fullPath);
|
||||
}
|
||||
return filesize($fullPath);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue