/**
  * Get the formatted deposit
  *
  * @access public
  * @return string
  */
 public function get_formatted_deposit()
 {
     $ph_countries = new PH_Countries();
     $currency = $ph_countries->get_currency($this->_currency);
     $prefix = $currency['currency_prefix'] ? $currency['currency_symbol'] : '';
     $suffix = !$currency['currency_prefix'] ? $currency['currency_symbol'] : '';
     return $prefix . number_format($this->_deposit, 0) . $suffix;
 }