daily pastebin goal
6%
SHARE
TWEET

Untitled

a guest Jul 29th, 2016 63 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. I can do this:
  2.  
  3.     $charge = \Stripe\Charge::create(array(
  4.       "amount" => 1000, // amount in cents, again
  5.       "currency" => "gbp",
  6.       "source" => $token,
  7.       "description" => "Example charge"
  8.       ));
  9.  
  10.  
  11. I can't do this:
  12.  
  13.   $charge = \Stripe\Order::create(array(
  14.       "items" => array(
  15.         array(
  16.           "type" => "sku",
  17.           "parent" => "PASTEDHERE"
  18.         )
  19.       ),
  20.       "currency" => "gbp",
  21.       "source" => $token
  22.     ));
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
 
Top