From 023fb38a75e7d1fab13a777212007f67f77ec6d6 Mon Sep 17 00:00:00 2001 From: Matthew Exon Date: Sun, 2 May 2021 18:12:53 +0200 Subject: [PATCH] Check return values with empty() --- src/Console/User.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Console/User.php b/src/Console/User.php index 383a77f70e..bb0748d6f6 100644 --- a/src/Console/User.php +++ b/src/Console/User.php @@ -178,7 +178,7 @@ HELP; $nick = $this->getNick($arg_index); $user = UserModel::getByNickname($nick, ['uid']); - if (!$user) { + if (empty($user)) { throw new RuntimeException($this->l10n->t('User not found')); } @@ -206,7 +206,7 @@ HELP; try { $result = UserModel::updatePassword($user['uid'], $password); - if (!$result) { + if (empty($result)) { throw new \Exception($this->l10n->t('Password update failed. Please try again.')); } @@ -425,7 +425,7 @@ HELP; return false; } - if ($user) { + if (!empty($user)) { $table->addRow($user); } $this->out($table->getTable());