8000 Fix CS · symfony/symfony@327ee1a · GitHub
[go: up one dir, main page]

Skip to content

Commit 327ee1a

Browse files
committed
Fix CS
1 parent 72f9e98 commit 327ee1a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/Symfony/Component/Security/Core/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
}

src/Symfony/Component/Security/Core/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)
0