print time in 24h format

This commit is contained in:
Arthur Schiwon 2014-05-23 19:12:51 +02:00
parent 2e85d5a852
commit 7f7999c7d8
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class LastSeen extends Command {
$date = new \DateTime();
$date->setTimestamp($lastLogin);
$output->writeln($user->getUID() .
'`s last login: ' . $date->format('d.m.Y h:i'));
'`s last login: ' . $date->format('d.m.Y H:i'));
}
}
}