diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-10 16:56:50 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-10 16:56:50 +0200 |
commit | 734c62bee0f46652285f782761317889d1ef5c7d (patch) | |
tree | f9fe648d23372244f1d687d49b6c66126469d3f4 /lib/private/MemoryInfo.php | |
parent | 28f8eb5dba60a75f7e22debbdc26f1d3164deb18 (diff) | |
download | nextcloud-server-734c62bee0f46652285f782761317889d1ef5c7d.tar.gz nextcloud-server-734c62bee0f46652285f782761317889d1ef5c7d.zip |
Format code according to PSR2
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/MemoryInfo.php')
-rw-r--r-- | lib/private/MemoryInfo.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/private/MemoryInfo.php b/lib/private/MemoryInfo.php index 0e70b500532..88ba69aae95 100644 --- a/lib/private/MemoryInfo.php +++ b/lib/private/MemoryInfo.php @@ -72,8 +72,10 @@ class MemoryInfo { switch ($last) { case 'g': $memoryLimit *= 1024; + // no break case 'm': $memoryLimit *= 1024; + // no break case 'k': $memoryLimit *= 1024; } |