From 8981929e92b9dc22e6542f16dc1cbce7cc338a9f Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Wed, 28 May 2014 22:48:35 +0200 Subject: [PATCH] Document type of user project. --- core/command/resetpassword.php | 1 + 1 file changed, 1 insertion(+) diff --git a/core/command/resetpassword.php b/core/command/resetpassword.php index ab877655e2..ddff7a980d 100644 --- a/core/command/resetpassword.php +++ b/core/command/resetpassword.php @@ -38,6 +38,7 @@ class ResetPassword extends Command { protected function execute(InputInterface $input, OutputInterface $output) { $username = $input->getArgument('user'); + /** @var $user \OC\User\User */ $user = $this->userManager->get($username); if (is_null($user)) { $output->writeln("There is no user called " . $username . "");