diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2014-05-23 10:55:54 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2014-05-23 10:55:54 +0200 |
commit | e9fa74bfb791796ec53b1129c3e20cdcccc9aa49 (patch) | |
tree | 97f24b740884821bf70cc5b65b2796909de309a9 /core/command | |
parent | 09bb8e0e3a9ba2213f3c2bd9774bbfb1502b7be5 (diff) | |
download | nextcloud-server-e9fa74bfb791796ec53b1129c3e20cdcccc9aa49.tar.gz nextcloud-server-e9fa74bfb791796ec53b1129c3e20cdcccc9aa49.zip |
save a whitespace
Diffstat (limited to 'core/command')
-rw-r--r-- | core/command/user/lastseen.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/command/user/lastseen.php b/core/command/user/lastseen.php index bf5914b2cde..b2788c00305 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')); } } } |