public function remove(int $contactId): RedirectResponse
    {
        $contact = $this->contactRepository->find($contactId);
        if ($contact === null) {
            $this->addFlash('error', 'Contact does not exist');