Socieboy\Forum\Jobs\Conversations\UpdateConversation::handle PHP Method

handle() public method

Execute the job.
public handle ( ConversationRepo $conversationRepo ) : void
$conversationRepo Socieboy\Forum\Entities\Conversations\ConversationRepo
return void
    public function handle(ConversationRepo $conversationRepo)
    {
        $conversation = $conversationRepo->findBySlug($this->slug);
        $conversation->update($this->prepareData());
    }