fixed typo

This commit is contained in:
Denis Duliçi 2022-06-29 21:48:48 +03:00
parent 419d457b02
commit c27c236d31

View File

@ -53,7 +53,7 @@ class CreateContact extends Job implements HasOwner, HasSource, ShouldCreate
'companies' => [$this->request->get('company_id')], '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; $this->request['user_id'] = $user->id;
} }