Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class MD5Hasher |
||
9 | { |
||
10 | /** |
||
11 | * @param $value |
||
12 | * @param array $options |
||
13 | * @return string |
||
14 | */ |
||
15 | public function make($value, array $options = []) |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @param $value |
||
24 | * @param $hashValue |
||
25 | * @param array $options |
||
26 | * @return bool |
||
27 | */ |
||
28 | public function check($value, $hashValue, array $options = []) |
||
33 | } |
||
34 | } |