Files
digifi-mware/app/Controllers/DigiCallBack.php
T
CHIEFSOFT\ameye 38bfaa672c call back path
2024-09-04 05:52:40 -04:00

15 lines
368 B
PHP

<?php
namespace App\Controllers;
class DigiCallBack extends BaseController
{
public function cardAccount(){
$raw_json = file_get_contents('php://input');
$in = json_decode($raw_json, true);
$out =[];
log_message('critical', "DigiCallBack::cardAccount ********* ALL ".serialize($in) );
return []; //json_encode( $final_out );
}
}