chargebee / chargebee-php

PHP library for the Chargebee API.

Home Page:https://apidocs.chargebee.com/docs/api?lang=php

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

get() method to get serializable values from ChargeBee_Model

yemkay opened this issue · comments

Can we add a function in ChargeBee_Model to get array values? It will be useful to serialize them in DB and restore them back later.

class ChargeBee_Model
{
  ...
  function getValues()
  {
    return $this->_values;
  }
}

Hi,
The method getValues() to get array values is now added to ChargeBee_Model.