Socieboy\Forum\Jobs\UnLikeReply::handle PHP Method

handle() public method

Execute the job.
public handle ( LikeRepo $likeRepo ) : void
$likeRepo Socieboy\Forum\Entities\Likes\LikeRepo
return void
    public function handle(LikeRepo $likeRepo)
    {
        $like = $likeRepo->where('user_id', auth()->user()->id)->where('reply_id', $this->reply_id)->first();
        $like->delete();
    }