Example #1
0
 /**
  * Get Payment Date
  *
  * @return string
  */
 public function getPaymentDate()
 {
     return Functions::dateTimeToJulianFormat($this->paymentDate);
 }
Example #2
0
 /**
  * Set Total Amount of Credits ($$$$$$$$$$$$ΒΆΒΆ)
  *
  * @param integer $value
  * @return $this
  */
 public function setTotalAmountOfCredits($value)
 {
     $this->totalAmountOfCredits = Functions::formatAmount($value, 12);
     return $this;
 }
Example #3
0
 /**
  * Get File Creation Date
  *
  * @return string
  */
 public function getFileCreationDate()
 {
     return Functions::dateTimeToJulianFormat($this->fileCreationDate);
 }