fix: style of memory plugin

This commit is contained in:
Nuno Maduro
2022-12-15 02:10:47 +00:00
parent 3911cfec6d
commit 1c9c408cf3

View File

@ -46,7 +46,7 @@ final class Memory implements AddsOutput, HandlesArguments
{
if ($this->enabled) {
$this->output->writeln(sprintf(
' <fg=gray;options=bold>Memory:</> <fg=default>%s MB</>',
' <fg=gray>Memory:</> <fg=default>%s MB</>',
round(memory_get_usage(true) / 1000 ** 2, 3)
));
}