Conditions | 3 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
54 | public function forgetInteractions(?string $interactionType = null): static |
||
55 | { |
||
56 | if ($interactionType && in_array($interactionType, InteractionTypeEnum::getValuesAsStrings())) { |
||
57 | return $this->forgetInteractionsOfType($interactionType); |
||
58 | } |
||
59 | |||
60 | $this->likes()->delete(); |
||
61 | |||
62 | return $this; |
||
63 | } |
||
65 |