Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function updateInteraction(Interaction $interaction, array $newInteractions, array $doneValue = []) |
||
27 | { |
||
28 | $interaction->update($newInteractions, $doneValue); |
||
29 | $this->interactionRepository->save($this, $interaction); |
||
30 | event(new InteractionOnPage($interaction->pageId())); |
||
31 | } |
||
33 |