[go: up one dir, main page]

Menu

[3822d7]: / core / Response.php  Maximize  Restore  History

Download this file

40 lines (31 with data), 917 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
namespace ICT\Core;
/* * ***************************************************************
* Copyright © 2016 ICT Innovations Pakistan All Rights Reserved *
* Developed By: Nasir Iqbal *
* Website : http://www.ictinnovations.com/ *
* Mail : nasir@ictinnovations.com *
* *************************************************************** */
class Response
{
/** @var integer $spool_id */
public $spool_id = null;
/** @var integer $application_id */
public $application_id = null;
/** @var array $application_data */
public $application_data = array();
public function __get($field)
{
switch ($field) {
default:
return $this->$field;
}
}
public function __set($field, $value)
{
switch ($field) {
default:
$this->$field = trim($value);
}
}
}