diff --git a/core/command/user/lastseen.php b/core/command/user/lastseen.php index bf5914b2cd..b2788c0030 100644 --- a/core/command/user/lastseen.php +++ b/core/command/user/lastseen.php @@ -40,8 +40,8 @@ class LastSeen extends Command { } else { $date = new \DateTime(); $date->setTimestamp($lastLogin); - $output->writeln($user->getUID() . '`s ' . - ' last login: ' . $date->format('d.m.Y h:i')); + $output->writeln($user->getUID() . + '`s last login: ' . $date->format('d.m.Y h:i')); } } }