Total Complexity | 1 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
27 | class Sha1PasswordHasher extends Md5PasswordHasher |
||
28 | { |
||
29 | /** |
||
30 | * Calls the actual php method that will do the hashing |
||
31 | * |
||
32 | * @link http://php.net/manual/en/function.sha1.php |
||
33 | * @param string $password Password string |
||
34 | * @return string |
||
35 | */ |
||
36 | 2 | protected function callHashFunction($password): string |
|
41 |