Exemplo n.º 1
0
 /**
  * Delete a customer.
  *
  * @return Customer
  */
 public function delete()
 {
     $this->info();
     foreach ($this->subscriptions() as $subscription) {
         $subscription->cancel(false);
     }
     $this->local_customer->delete();
     $this->gateway->apiDelay();
     $this->local_customer = null;
     return $this;
 }