Fix PHP_CS error

Signed-off-by: Christian König <ckoenig@posteo.de>
This commit is contained in:
Christian König
2023-09-20 13:41:40 +02:00
parent ec72fbc439
commit 48febbbf3e
+2 -2
View File
@@ -597,9 +597,9 @@ function formatSizeUnits($bytes)
} elseif ($bytes >= 1024) {
$bytes = number_format($bytes / 1024, 2).' kB';
} elseif ($bytes > 1) {
$bytes = $bytes.' bytes';
$bytes .= ' bytes';
} elseif ($bytes == 1) {
$bytes = $bytes.' byte';
$bytes .= ' byte';
} else {
$bytes = '0 bytes';
}