Skip to content

Commit

Permalink
HOTPResult: Autofixing
Browse files Browse the repository at this point in the history
  • Loading branch information
reedy committed Jan 13, 2025
1 parent 410091a commit a4c57f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/HOTPResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ public function toDec(): int
$offset = $hmacResult[19] & 0xf;

$this->decimal = (
(($hmacResult[$offset+0] & 0x7f) << 24) |
(($hmacResult[$offset+1] & 0xff) << 16) |
(($hmacResult[$offset+2] & 0xff) << 8) |
($hmacResult[$offset+3] & 0xff)
(($hmacResult[$offset + 0] & 0x7f) << 24) |
(($hmacResult[$offset + 1] & 0xff) << 16) |
(($hmacResult[$offset + 2] & 0xff) << 8) |
($hmacResult[$offset + 3] & 0xff)
);
}
return $this->decimal;
Expand Down

0 comments on commit a4c57f7

Please sign in to comment.