Example #1
0
 /**
  * Delete a customer.
  * 
  * @return Customer
  */
 public function delete()
 {
     $this->info();
     $this->stripe_customer->delete();
     $this->stripe_customer = null;
     return $this;
 }