diff --git a/src/Packagist/WebBundle/Command/CreateUserCommand.php b/src/Packagist/WebBundle/Command/CreateUserCommand.php index 21e1bb0f..090db1e7 100644 --- a/src/Packagist/WebBundle/Command/CreateUserCommand.php +++ b/src/Packagist/WebBundle/Command/CreateUserCommand.php @@ -61,6 +61,7 @@ protected function execute(InputInterface $input, OutputInterface $output) $this->userManipulator->changePassword($username, $password); } + $output->writeln("User $username was updated successfully"); return; } @@ -68,5 +69,7 @@ protected function execute(InputInterface $input, OutputInterface $output) $email = $input->getOption('email') ?: $username . '@example.com'; $this->userManipulator->create($username, $password, $email, true, $input->getOption('admin')); $this->userManipulator->addRole($username, 'ROLE_ADMIN'); + + $output->writeln("User $username was created successfully"); } }