Beispiel #1
0
 /**
  * Returns the added invoice item of a customer
  * @param  array $item
  * @return array
  */
 public function addInvoiceItem($item)
 {
     if (!$this->subscription) {
         throw new CashewExceptions\NoSubscriptionException();
     }
     return $this->gateway->invoiceItem($item);
 }