treewide: strict comparisons

This commit is contained in:
2025-03-12 01:09:08 +01:00
parent 84de16fc25
commit c1802e7cf2
8 changed files with 30 additions and 31 deletions

View File

@@ -98,7 +98,7 @@ class UserManager {
$statement->execute();
$row = $statement->fetch();
if ($row == false) {
if ($row === false) {
return 0;
}