| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 10 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 19 | public function __construct(array $data) | ||
| 20 |     { | ||
| 21 | $this->isSuccess = BoolHelper::assign($data['success']); | ||
| 22 | $this->retMsg = StringHelper::assign($data['ret_msg']); | ||
| 23 | $this->connectionId = StringHelper::assign($data['conn_id']); | ||
| 24 | $this->reqId = StringHelper::assign($data['req_id']); | ||
| 25 | $this->operation = StringHelper::assign($data['op']); | ||
| 26 | |||
| 27 | $this->time = (new \DateTime()); | ||
| 28 | $this->result = new EntityCollection(); | ||
|  | |||
| 29 | } | ||
| 46 |