GitList
Repositories
Help
Report an Issue
blackjack
Code
Commits
Branches
Tags
Search
Tree:
d7b0224
Branches
Tags
master
blackjack
Objects
Response.php
initial commit
Dev Ghai
commited
d7b0224
at 2014-04-17 16:55:27
Response.php
Blame
History
Raw
<?php /** * User: dev * Date: 3/11/14 * Time: 9:22 AM */ namespace Blackjack\Objects; class Response { public $response; public $error; public $isSessionEnded; function __construct($responseObj, $error, $sessionEnded) { $this->error = $error; $this->response = $responseObj; $this->isSessionEnded = $sessionEnded; } }