1 | <?php |
||
12 | trait HashEmail |
||
13 | { |
||
14 | /* ----------------------------------------------------------------- |
||
15 | | Main Methods |
||
16 | | ----------------------------------------------------------------- |
||
17 | */ |
||
18 | |||
19 | /** |
||
20 | * Get a hashed email. |
||
21 | * |
||
22 | * @param string $email |
||
23 | * |
||
24 | * @return string |
||
25 | */ |
||
26 | 36 | public static function hashEmail(string $email): string |
|
30 | } |
||
31 |