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