| Total Complexity | 4 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | class HmacViewHelper extends AbstractViewHelper |
||
| 23 | { |
||
| 24 | protected HashService $hashService; |
||
| 25 | |||
| 26 | public function injectHashService(HashService $hashService): void |
||
| 27 | { |
||
| 28 | $this->hashService = $hashService; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function initializeArguments(): void |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Returns the hmac for the given registration in order to cancel the registration |
||
| 39 | */ |
||
| 40 | public function render(): string |
||
| 51 |