Skip to content

Commit

Permalink
title and columns
Browse files Browse the repository at this point in the history
  • Loading branch information
brianteeman committed Jul 3, 2022
1 parent c875fcc commit 018edfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/src/Console/ListUserCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ protected function doExecute(InputInterface $input, OutputInterface $output): in
$db = $this->getDatabase();

$this->configureIO($input, $output);
$this->ioStyle->title('List users');
$this->ioStyle->title('List Users');

$groupsQuery = $db->getQuery(true)
->select($db->quoteName(['title', 'id']))
Expand Down Expand Up @@ -101,7 +101,7 @@ function ($groupId) use ($groups) {
$users[] = $user;
}

$this->ioStyle->table(['id', 'username', 'name', 'email', 'blocked', 'groups'], $users);
$this->ioStyle->table(['ID', 'Username', 'Name', 'Email', 'Blocked', 'Groups'], $users);

return Command::SUCCESS;
}
Expand Down

0 comments on commit 018edfc

Please sign in to comment.