From c27c236d317033a69656386fe4b1f592a26343cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Wed, 29 Jun 2022 21:48:48 +0300 Subject: [PATCH] fixed typo --- app/Jobs/Common/CreateContact.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/Common/CreateContact.php b/app/Jobs/Common/CreateContact.php index 4edbf789e..452756c5e 100644 --- a/app/Jobs/Common/CreateContact.php +++ b/app/Jobs/Common/CreateContact.php @@ -53,7 +53,7 @@ class CreateContact extends Job implements HasOwner, HasSource, ShouldCreate 'companies' => [$this->request->get('company_id')], ]); - $user = $this->dispatch(new ($this->request)); + $user = $this->dispatch(new CreateUser($this->request)); $this->request['user_id'] = $user->id; }