chore(deps): upgrade dependencies (#7395)

This commit is contained in:
Alexis Saettler
2024-10-06 18:33:02 +02:00
committed by GitHub
parent c900b4af72
commit a2492ed820
481 changed files with 4509 additions and 4325 deletions
@@ -40,7 +40,7 @@ class ContactModuleTimelineEventController extends Controller
'started_at' => $request->input('started_at'),
];
$timelineEvent = (new CreateTimelineEvent())->execute($data);
$timelineEvent = (new CreateTimelineEvent)->execute($data);
// we also need to add the current contact to the list of participants
// finally, just so we are sure that we don't have the same participant
@@ -75,7 +75,7 @@ class ContactModuleTimelineEventController extends Controller
'participant_ids' => $participants,
];
$lifeEvent = (new CreateLifeEvent())->execute($data);
$lifeEvent = (new CreateLifeEvent)->execute($data);
$contact = Contact::find($contactId);
return response()->json([
@@ -92,7 +92,7 @@ class ContactModuleTimelineEventController extends Controller
'timeline_event_id' => $timelineEventId,
];
(new DestroyTimelineEvent())->execute($data);
(new DestroyTimelineEvent)->execute($data);
return response()->json([
'data' => true,