예제 #1
0
파일: Cashew.php 프로젝트: owlgrin/cashew
 /**
  * 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);
 }