credit = $credit; $this->data = $data; $this->company = $company; } /** * Execute the job. * * @return void */ public function handle(CreditRepository $credit_repository): ?Credit { MultiDB::setDB($this->company->db); $payment = false; if ($payment) { PaymentNotification::dispatch($payment, $payment->company); } return $this->credit; } }