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