Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lsmith77 committed Oct 15, 2019
1 parent 17a56c8 commit ec9c004
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Console/Commands/CreateStripePlans.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ protected function createProduct()

try {
Stripe\Product::create([
'id' => $this->getProductId().'-'.$id,
'id' => $id,
'name' => Spark::$details['product'],
'statement_descriptor' => Spark::$details['vendor'],
'unit_label' => 'JobAds',
Expand Down Expand Up @@ -99,7 +99,7 @@ protected function createStripePlans($plans)

try {
Stripe\Plan::create([
'id' => $plan->id,
'id' => $this->getProductId().'-'.$plan->id,
'nickname' => $plan->name,
'product' => $this->getProductId(),
'amount' => $plan->price * 100,
Expand Down

0 comments on commit ec9c004

Please # to comment.