GitList
Repositories
Help
Report an Issue
vroom360
Code
Commits
Branches
Tags
Search
Tree:
e36c40f
Branches
Tags
master
vroom360
RequestObject.php
initial commit
Dev Ghai
commited
e36c40f
at 2013-09-26 06:24:15
RequestObject.php
Blame
History
Raw
<?php /* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * Description of DataExchangeObject * * @author dghai */ class RequestObject { public $requestHash; public $call; public $paramArray; function __construct($hash, $functionCall, $params) { $this->call = $functionCall; $this->paramArray = $params; $this->requestHash = $hash; } public function ToJSONString() { return json_encode($this); } } ?>