/**
  * Get all Invoices
  *
  * @return array|stdClass[]
  */
 public function all()
 {
     $handles = $this->client->CurrentInvoice_GetAll()->CurrentInvoice_GetAllResult->CurrentInvoiceHandle;
     return $this->getArrayFromHandles($handles);
 }