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