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
@@ -49,7 +49,7 @@ class ContactModuleLifeEventController extends Controller
'participant_ids' => $participants,
];
$lifeEvent = (new CreateLifeEvent())->execute($data);
$lifeEvent = (new CreateLifeEvent)->execute($data);
$contact = Contact::find($contactId);
return response()->json([
@@ -93,7 +93,7 @@ class ContactModuleLifeEventController extends Controller
'participant_ids' => $participants,
];
$lifeEvent = (new UpdateLifeEvent())->execute($data);
$lifeEvent = (new UpdateLifeEvent)->execute($data);
$contact = Contact::find($contactId);
return response()->json([
@@ -111,7 +111,7 @@ class ContactModuleLifeEventController extends Controller
'life_event_id' => $lifeEventId,
];
(new DestroyLifeEvent())->execute($data);
(new DestroyLifeEvent)->execute($data);
return response()->json([
'data' => true,