stripeClient = $stripeClient; } public function charge($amount, $token) { $this->stripeClient->createCharge([ 'amount' => $amount, 'source' => $token, 'currency' => 'usd', ]); } }