예제 #1
0
 /**
  * needs to be run once every 24 hours.
  * this tells bank to process all transactions of that day SMS or DMS that were success
  * in case of DMS only confirmed and sucessful transactions will be processed
  * @return array RESULT, RESULT_CODE, FLD_075, FLD_076, FLD_087, FLD_088
  * RESULT        - OK     - successful end of business day
  * 		   FAILED - failed end of business day
  * RESULT_CODE   - end-of-business-day code returned from Card Suite Processing RTPS (3 digits)
  * FLD_075       - the number of credit reversals (up to 10 digits), shown only if result_code begins with 5
  * FLD_076       - the number of debit transactions (up to 10 digits), shown only if result_code begins with 5
  * FLD_087       - total amount of credit reversals (up to 16 digits), shown only if result_code begins with 5
  * FLD_088       - total amount of debit transactions (up to 16 digits), shown only if result_code begins with 5
  */
 public function closeDay()
 {
     $args = ['command' => 'b'];
     return parent::closeDay($args);
 }