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