Skip to content

Commit

Permalink
code sniffing problem
Browse files Browse the repository at this point in the history
  • Loading branch information
jturbide committed Feb 24, 2024
1 parent 19910ac commit 7202f70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Identity.php
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@ public function findUserById(int $id): ?Model
'id = :id:',
'bind' => ['id' => $id],
'bindTypes' => ['id' => Column::BIND_PARAM_INT],
]) ?: null;
]);
}

/**
Expand All @@ -978,6 +978,6 @@ public function findUser(string $string): ?Model
'email' => Column::BIND_PARAM_STR,
'username' => Column::BIND_PARAM_STR,
],
]) ?: null;
]);
}
}

0 comments on commit 7202f70

Please sign in to comment.