diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-08-17 17:16:50 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2020-08-17 17:46:57 +0200 |
commit | d7f66c36acef9334e3c9ecf750cae5bfc2f206d8 (patch) | |
tree | 4896ad25898411bfd2268b188743bf6bf3d5fd31 /core/Command/User | |
parent | 00cb8e6c54d8f2a26c5770fef5fe4ae1e366d0ce (diff) | |
download | nextcloud-server-d7f66c36acef9334e3c9ecf750cae5bfc2f206d8.tar.gz nextcloud-server-d7f66c36acef9334e3c9ecf750cae5bfc2f206d8.zip |
Fix "misplaced variables" warning of Psalm in PHPDoc statements
Ref #21787
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core/Command/User')
-rw-r--r-- | core/Command/User/ResetPassword.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/Command/User/ResetPassword.php b/core/Command/User/ResetPassword.php index bcb3c774ef0..bde82fd4770 100644 --- a/core/Command/User/ResetPassword.php +++ b/core/Command/User/ResetPassword.php @@ -70,7 +70,6 @@ class ResetPassword extends Command { protected function execute(InputInterface $input, OutputInterface $output): int { $username = $input->getArgument('user'); - /** @var $user \OCP\IUser */ $user = $this->userManager->get($username); if (is_null($user)) { $output->writeln('<error>User does not exist</error>'); |