JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrorder_id; * echo $notif->transaction_status; * ``` */ class Notification { private $response; public function __construct($input_source = "php://input") { $raw_notification = json_decode(file_get_contents($input_source), true); $status_response = Transaction::status($raw_notification['transaction_id']); $this->response = $status_response; } public function __get($name) { if (isset($this->response->$name)) { return $this->response->$name; } } public function getResponse() { return $this->response; } }