0
1
Fork 0
hedera-web-mindshore/rest/tpv/confirm-post.php

14 lines
203 B
PHP
Raw Normal View History

2016-07-22 20:00:27 +00:00
<?php
2018-05-23 10:14:20 +00:00
require_once(__DIR__.'/tpv.php');
2016-07-22 20:00:27 +00:00
/**
* Gets transaction confirmation from HTTP POST.
**/
2018-05-23 10:14:20 +00:00
class ConfirmPost extends Vn\Web\RestRequest {
function run($db) {
Tpv::confirm($db, $_POST);
2016-07-22 20:00:27 +00:00
}
}