| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 36 | public function forgetSensitiveData(IdentityId $identityId) |
||
| 37 | { |
||
| 38 | $sensitiveDataMessageStream = $this->sensitiveDataMessageRepository->findByIdentityId($identityId); |
||
| 39 | $sensitiveDataMessageStream->forget(); |
||
| 40 | |||
| 41 | $this->sensitiveDataMessageRepository->modify($sensitiveDataMessageStream); |
||
| 42 | } |
||
| 43 | } |
||
| 44 |