コード例 #1
0
ファイル: Customer.php プロジェクト: netors/conekta-cashier
 /**
  * Pause the current subscription.
  *
  * @return void
  */
 public function pauseSubscription()
 {
     return $this->subscription->pause();
 }
コード例 #2
0
ファイル: Customer.php プロジェクト: dinkbit/conekta-cashier
 /**
  * Resume the current subscription.
  *
  * @return void
  */
 public function resumeSubscription()
 {
     return $this->subscription = $this->subscription->resume();
 }