From e9fa74bfb791796ec53b1129c3e20cdcccc9aa49 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 23 May 2014 10:55:54 +0200 Subject: [PATCH] save a whitespace --- core/command/user/lastseen.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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')); } } }