我可以使用下面的代码创建一个Stripe帐户,但是在哪里可以找到此create方法的代码?

时间:2019-04-16 02:00:12

标签: php stripe-payments

我可以使用以下代码创建一个Stripe帐户,但是在哪里可以找到此创建方法的代码?

\Stripe\Stripe::setApiKey("sk_test_xxxx");

$result = \Stripe\Account::create([
  "type" => "custom",
  "country" => "US",
  "email" => "bob@example.com",
]);

Stripe API


我试图检查Account对象的create方法的代码,但没有找到。

在哪里?

有一个类似的名称为createExternalAccount的方法,但是我没有称该方法的名称。

GitHub stripe-php/lib/Account.php

0 个答案:

没有答案