Skip to content

Commit

Permalink
fix typo in variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
briskt committed Oct 7, 2024
1 parent cadb1be commit 9d5260c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions features/fakes/FakeIdBrokerClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ public function mfaVerify(int $id, string $employeeId, string|array $value): arr
*/
public function updateUserLastLogin(string $employeeId): array
{
if (empty($employee_id)) {
throw new InvalidArgumentException('employee_id is required');
if (empty($employeeId)) {
throw new InvalidArgumentException('employeeId is required');
}

$nowUtc = gmdate('Y-m-d H:i:s');
Expand Down

0 comments on commit 9d5260c

Please sign in to comment.