From 1c9c408cf386f18933a55b07c484d115486f7aae Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Thu, 15 Dec 2022 02:10:47 +0000 Subject: [PATCH] fix: style of memory plugin --- src/Plugins/Memory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugins/Memory.php b/src/Plugins/Memory.php index 5d29960e..0755f743 100644 --- a/src/Plugins/Memory.php +++ b/src/Plugins/Memory.php @@ -46,7 +46,7 @@ final class Memory implements AddsOutput, HandlesArguments { if ($this->enabled) { $this->output->writeln(sprintf( - ' Memory: %s MB', + ' Memory: %s MB', round(memory_get_usage(true) / 1000 ** 2, 3) )); }