| Total Complexity | 3 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | trait DigestionKeyTrait |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * Setter for the key string property. |
||
| 26 | * |
||
| 27 | * @param string $key The digestion key string. |
||
| 28 | * |
||
| 29 | * @return $this The hash algorithm object. |
||
| 30 | * @throws \Exception Validation errors. |
||
| 31 | */ |
||
| 32 | 137 | public function setKey($key) |
|
| 41 | } |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Getter for the key string property. |
||
| 45 | * |
||
| 46 | * @return string The digestion key string. |
||
| 47 | */ |
||
| 48 | 21 | public function getKey() |
|
| 53 |