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
@@ -25,7 +25,7 @@ class ContactModuleNoteController extends Controller
'emotion_id' => $request->input('emotion'),
];
$note = (new CreateNote())->execute($data);
$note = (new CreateNote)->execute($data);
$contact = Contact::find($contactId);
@@ -47,7 +47,7 @@ class ContactModuleNoteController extends Controller
'emotion_id' => $request->input('emotion'),
];
$note = (new UpdateNote())->execute($data);
$note = (new UpdateNote)->execute($data);
$contact = Contact::find($contactId);
@@ -66,7 +66,7 @@ class ContactModuleNoteController extends Controller
'note_id' => $noteId,
];
(new DestroyNote())->execute($data);
(new DestroyNote)->execute($data);
return response()->json([
'data' => true,