Esempio n. 1
0
 /**
  * Set Total Amount of Credits ($$$$$$$$$$$$¢¢)
  *
  * @param integer $value
  * @return $this
  */
 public function setTotalAmountOfCredits($value)
 {
     $this->totalAmountOfCredits = Functions::formatAmount($value, 12);
     return $this;
 }
Esempio n. 2
0
 /**
  * Set Amount
  *
  * @param float|decimal|integer $value
  * @return $this
  */
 public function setAmount($value)
 {
     $this->amount = Functions::formatAmount($value);
     return $this;
 }