Skip to content

Commit a4c57f7

Browse files
committed
HOTPResult: Autofixing
1 parent 410091a commit a4c57f7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/HOTPResult.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ public function toDec(): int
6969
$offset = $hmacResult[19] & 0xf;
7070

7171
$this->decimal = (
72-
(($hmacResult[$offset+0] & 0x7f) << 24) |
73-
(($hmacResult[$offset+1] & 0xff) << 16) |
74-
(($hmacResult[$offset+2] & 0xff) << 8) |
75-
($hmacResult[$offset+3] & 0xff)
72+
(($hmacResult[$offset + 0] & 0x7f) << 24) |
73+
(($hmacResult[$offset + 1] & 0xff) << 16) |
74+
(($hmacResult[$offset + 2] & 0xff) << 8) |
75+
($hmacResult[$offset + 3] & 0xff)
7676
);
7777
}
7878
return $this->decimal;

0 commit comments

Comments
 (0)