Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | trait KeyedDigestionInjectableTrait |
||
24 | { |
||
25 | /** |
||
26 | * Setter for the keyed message digestion service. |
||
27 | * |
||
28 | * @param KeyedHashFunction $hasher The keyed message digestion service or null. |
||
29 | * |
||
30 | * @return $this The container object. |
||
31 | */ |
||
32 | public function setKeyedDigestionFunction(KeyedHashFunction $hasher) |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * Getter for the keyed message digestion service. |
||
41 | * |
||
42 | * @return KeyedHashFunction|null The currently injected message digestion service or null. |
||
43 | */ |
||
44 | public function getKeyedDigestionFunction() |
||
49 |