Skip to content

Commit 073d631

Browse files
committed
Fix CS
1 parent c70b102 commit 073d631

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Encoder/NativePasswordEncoder.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ public function isPasswordValid($encoded, $raw, $salt): bool
7979
if ('' === $raw) {
8080
return false;
8181
}
82+
8283
if (\strlen($raw) > self::MAX_PASSWORD_LENGTH) {
8384
return false;
8485
}

Encoder/SodiumPasswordEncoder.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ public function isPasswordValid($encoded, $raw, $salt): bool
7979
if ('' === $raw) {
8080
return false;
8181
}
82+
8283
if (\strlen($raw) > self::MAX_PASSWORD_LENGTH) {
8384
return false;
8485
}

0 commit comments

Comments
 (0)