Fix codestyle
authorjoshuaruesweg <ruesweg@woltlab.com>
Wed, 27 Jan 2021 10:42:23 +0000 (11:42 +0100)
committerjoshuaruesweg <ruesweg@woltlab.com>
Wed, 27 Jan 2021 10:42:23 +0000 (11:42 +0100)
wcfsetup/install/files/lib/system/user/authentication/password/algorithm/Phpbb3.class.php

index 07559f1b02be8302473402699ec1f6aa6a174675..b883496ef4839ff79c70cb9bba90e3668bbbb031 100644 (file)
@@ -20,7 +20,8 @@ final class Phpbb3 implements IPasswordAlgorithm
         hash as phpassHash;
     }
 
-    public function verify(string $password, string $hash): bool {
+    public function verify(string $password, string $hash): bool
+    {
         if ($this->phpassVerify($password, $hash)) {
             return true;
         }
@@ -64,11 +65,13 @@ final class Phpbb3 implements IPasswordAlgorithm
         return \hash_equals($hash, $password);
     }
 
-    public function needsRehash(string $hash): bool {
+    public function needsRehash(string $hash): bool
+    {
         return false;
     }
 
-    public function hash(string $password): string {
+    public function hash(string $password): string
+    {
         return '';
     }
 }