diff options
| author | 2024-09-11 17:14:53 +0200 | |
|---|---|---|
| committer | 2024-09-11 17:14:53 +0200 | |
| commit | dfac9f5813df7d4c7c812c381364c8898333f559 (patch) | |
| tree | 978496d0a8d8b0d6b5dbe836c6829296133b337c /cli/update-user.php | |
| parent | 31c8846791d4b5316fbc790202f79545c012f9c2 (diff) | |
PHPStan booleansInConditions (#6793)
* PHPStan booleansInConditions
* Uniformisation
Diffstat (limited to 'cli/update-user.php')
| -rwxr-xr-x | cli/update-user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/update-user.php b/cli/update-user.php index ff0177997..553025d2b 100755 --- a/cli/update-user.php +++ b/cli/update-user.php @@ -80,7 +80,7 @@ if (!$ok) { if (isset($cliOptions->apiPassword)) { $error = FreshRSS_api_Controller::updatePassword($cliOptions->apiPassword); - if ($error) { + if ($error !== false) { fail($error); } } |
