Example #1
0
 /**
  * Pause the current subscription.
  *
  * @return void
  */
 public function pauseSubscription()
 {
     return $this->subscription->pause();
 }
Example #2
0
 /**
  * Resume the current subscription.
  *
  * @return void
  */
 public function resumeSubscription()
 {
     return $this->subscription = $this->subscription->resume();
 }