setApiKey() 공개 메소드

Sets the Stripe API key.
public setApiKey ( string $apiKey )
$apiKey string
예제 #1
0
파일: Stripe.php 프로젝트: squigg/stripe
 /**
  * Sets the Stripe API key.
  *
  * @param  string  $apiKey
  * @return $this
  */
 public function setApiKey($apiKey)
 {
     $this->config->setApiKey($apiKey);
     return $this;
 }