1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
require_once dirname(__FILE__).'/WebParamGather.php';
class BuyRejectWebParamGather implements WebParamGather{ public function BuyRejectWebParamGather(){ } public function gather($request){ $webParam = new WebMessageDTO(); return $webParam; } } ?>
|